Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 297 for Binary1 (0.9 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                <p>
                We check the binary compatibility by comparing the current code’s binary interfaces
                against THE LATEST VERSION WHICH IS RELEASED FROM RELEASE BRANCH (from `released-version.json` on this branch)
                AND LOWER THAN CURRENT BASE VERSION (from `version.txt` on this branch).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_trimpath.txt

    stdout 'binary contains module root: false'
    stdout 'binary contains an empty GOROOT'
    
    # A binary from an external module built with -trimpath should not contain
    # the current workspace or GOROOT.
    go get rsc.io/fortune
    go install -trimpath rsc.io/fortune
    exec $WORK/paths-a.exe $GOPATH/bin/fortune$GOEXE
    stdout 'binary contains module root: false'
    stdout 'binary contains an empty GOROOT'
    go mod edit -droprequire rsc.io/fortune
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/psiDeclarationProvider/FirStandaloneNormalAnalysisLibraryBinaryDecompiledModulePsiDeclarationProviderTestGenerated.java

      }
    
      @Test
      @TestMetadata("jvmNameOnGetter.kt")
      public void testJvmNameOnGetter() {
        runTest("analysis/analysis-api/testData/standalone/binary/jvmNameOnGetter.kt");
      }
    
      @Test
      @TestMetadata("jvmNameOnSetter.kt")
      public void testJvmNameOnSetter() {
        runTest("analysis/analysis-api/testData/standalone/binary/jvmNameOnSetter.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 10:23:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. bin/init.sh

    ISTIO_ENVOY_LINUX_RELEASE_PATH="${ISTIO_ENVOY_LINUX_RELEASE_PATH:-${ISTIO_ENVOY_LINUX_RELEASE_DIR}/${ISTIO_ENVOY_LINUX_RELEASE_NAME}}"
    
    # There is no longer an Istio built Envoy binary available for the Mac. Copy the Linux binary as the Mac binary was
    # very old and likely no one was really using it (at least temporarily).
    
    # Download Envoy debug and release binaries for Linux x86_64. They will be included in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/dependencies/implementation.go

    //
    // Basic selection logic is as follows:
    // 1. see if we have `nft` binary set in our $PATH
    // 2. see if we have existing rules in `nft` in our netns
    // 3. If so, use `nft` binary set
    // 4. Otherwise, see if we have `legacy` binary set, and use that.
    // 5. Otherwise, see if we have `iptables` binary set, and use that (detecting whether it's nft or legacy).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/README.md

    This wrapper solves for that by fixing the wrapper lib to have binary detection logic that will work in *all* contexts where we use it, rely fully on binary autodetection in all spots, properly handling `iptables/ip6tables` variants..
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. tests/binary/binaries_test.go

    			if strings.Contains(string(out), denylist) {
    				t.Fatalf("binary contains unexpected flags: %v", string(out))
    			}
    		}
    	})
    }
    
    // Test that binary sizes do not bloat
    func TestBinarySizes(t *testing.T) {
    	cases := map[string]struct {
    		minMb int64
    		maxMb int64
    	}{
    		// TODO: shrink the ranges here once the active work to reduce binary size is complete
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

          "WINDOW_UPDATE", "CONTINUATION",
        )
    
      /**
       * Lookup table for valid flags for DATA, HEADERS, CONTINUATION. Invalid combinations are
       * represented in binary.
       */
      private val FLAGS = arrayOfNulls<String>(0x40) // Highest bit flag is 0x20.
      private val BINARY =
        Array(256) {
          format("%8s", Integer.toBinaryString(it)).replace(' ', '0')
        }
    
      init {
        FLAGS[FLAG_NONE] = ""
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/session/KtAnalysisSessionProvider.kt

        public abstract fun getAnalysisSessionByUseSiteKtModule(useSiteKtModule: KtModule): KaSession
    
        // The `analyse` functions affect binary compatibility as they are inlined with every `analyze` call. To avoid breaking binary
        // compatibility, their implementations should not be changed unless absolutely necessary. It should be possible to put most
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/crypto/internal/hpke/hpke.go

    }
    
    func SuiteID(kemID, kdfID, aeadID uint16) []byte {
    	suiteID := make([]byte, 0, 4+2+2+2)
    	suiteID = append(suiteID, []byte("HPKE")...)
    	suiteID = binary.BigEndian.AppendUint16(suiteID, kemID)
    	suiteID = binary.BigEndian.AppendUint16(suiteID, kdfID)
    	suiteID = binary.BigEndian.AppendUint16(suiteID, aeadID)
    	return suiteID
    }
    
    func ParseHPKEPublicKey(kemID uint16, bytes []byte) (*ecdh.PublicKey, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top