Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 370 for extended (0.38 sec)

  1. src/internal/cpu/cpu_s390x.go

    	// mandatory facilities
    	zarch  facility = 1  // z architecture mode is active
    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    	dfp    facility = 42 // decimal-floating-point
    	etf3eh facility = 30 // extended-translation 3 enhancement
    
    	// cryptography facilities
    	msa  facility = 17  // message-security-assist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void hasTransitiveLegend() {
            outputContains("(t) Configuration extended transitively.")
        }
    
        void doesNotHaveTransitiveLegend() {
            outputDoesNotContain("(t) Configuration extended transitively.")
        }
    
        void reportsCompleteAbsenceOfResolvableConfigurations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. docs/ftp/README.md

    ```
    ftp> ls runner/chunkdocs/metadata
    229 Entering Extended Passive Mode (|||44269|)
    150 Opening ASCII mode data connection for file list
    -rwxrwxrwx 1 nobody nobody           45 Apr  1 06:13 chunkdocs/metadata
    226 Closing data connection, sent 75 bytes
    ftp> get
    (remote-file) runner/chunkdocs/metadata
    (local-file) test
    local: test remote: runner/chunkdocs/metadata
    229 Entering Extended Passive Mode (|||37785|)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/crypto/tls/prf.go

    }
    
    // noEKMBecauseNoEMS is used as a value of ConnectionState.ekm when Extended
    // Master Secret is not negotiated and thus we wish to fail all key-material
    // export requests.
    func noEKMBecauseNoEMS(label string, context []byte, length int) ([]byte, error) {
    	return nil, errors.New("crypto/tls: ExportKeyingMaterial is unavailable when neither TLS 1.3 nor Extended Master Secret are negotiated; override with GODEBUG=tlsunsafeekm=1")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/runtime/tagptr_64bit.go

    	// various architectures. 48 bits is enough for all
    	// architectures except s390x.
    	//
    	// On AMD64, virtual addresses are 48-bit (or 57-bit) numbers sign extended to 64.
    	// We shift the address left 16 to eliminate the sign extended part and make
    	// room in the bottom for the count.
    	//
    	// On s390x, virtual addresses are 64-bit. There's not much we
    	// can do about this, so we just hope that the kernel doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. test/codegen/bits.go

    	return a + 0x1234568
    }
    
    // Verify sign-extended values are not zero-extended under a bit mask (#61297)
    func signextendAndMask8to64(a int8) (s, z uint64) {
    	// ppc64x: "MOVB", "ANDCC\t[$]1015,"
    	s = uint64(a) & 0x3F7
    	// ppc64x: -"MOVB", "ANDCC\t[$]247,"
    	z = uint64(uint8(a)) & 0x3F7
    	return
    }
    
    // Verify zero-extended values are not sign-extended under a bit mask (#61297)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiTokenizerFactory.java

                } else if ("normal".equalsIgnoreCase(modeSetting)) {
                    mode = JapaneseTokenizer.Mode.NORMAL;
                } else if ("extended".equalsIgnoreCase(modeSetting)) {
                    mode = JapaneseTokenizer.Mode.EXTENDED;
                }
            }
            return mode;
        }
    
        @Override
        public Tokenizer create() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/doc.go

    // github.com/gtank/ristretto255 for prime order group logic.
    //
    // However, developers who do need to interact with low-level edwards25519
    // operations can use filippo.io/edwards25519, an extended version of this
    // package repackaged as an importable module.
    //
    // (Note that filippo.io/edwards25519 and github.com/gtank/ristretto255 are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. .gitignore

    security/cmd/node_agent/na/pkey
    # istioctl bash completion file
    tools/istioctl.bash
    vendor
    # Contains the built artifacts
    out/
    etc/
    var/
    # Go compiled tests
    *.test
    # Profiles
    *.prof
    # MacOS extended attributes
    ._*
    # MacOS Desktop Services Store
    .DS_Store
    /manifests/charts/**/charts/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java

     * def configurations = publication.configurations
     *
     * configurations.create("extended", { extend "default"})
     * configurations.all {
     *     extend "base"
     * }
     * </pre>
     */
    public interface IvyConfigurationContainer extends NamedDomainObjectContainer<IvyConfiguration> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top