Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 815 for Binary1 (0.23 sec)

  1. 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)
  2. 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)
  3. src/cmd/internal/goobj/objfile.go

    func (n *RefName) Sym() SymRef {
    	return SymRef{binary.LittleEndian.Uint32(n[:]), binary.LittleEndian.Uint32(n[4:])}
    }
    func (n *RefName) Name(r *Reader) string {
    	len := binary.LittleEndian.Uint32(n[8:])
    	off := binary.LittleEndian.Uint32(n[12:])
    	return r.StringAt(off, len)
    }
    
    func (n *RefName) SetSym(x SymRef) {
    	binary.LittleEndian.PutUint32(n[:], x.PkgIdx)
    	binary.LittleEndian.PutUint32(n[4:], x.SymIdx)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. src/debug/gosym/pclntab.go

    	case leMagic == go118magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver118
    	case beMagic == go118magic:
    		t.binary, possibleVersion = binary.BigEndian, ver118
    	case leMagic == go120magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver120
    	case beMagic == go120magic:
    		t.binary, possibleVersion = binary.BigEndian, ver120
    	default:
    		return
    	}
    	t.version = possibleVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                    task.dependsOn(binary.getInstallDirectory());
                    // TODO: Honor changes to build directory
                    task.setOutputDir(project.getLayout().getBuildDirectory().dir("test-results/" + binary.getNames().getDirName()).get().getAsFile());
                });
                binary.getRunTask().set(testTask);
    
                configureTestSuiteWithTestedComponentWhenAvailable(project, testComponent, binary);
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    below.
    
    For each component, Gradle defines one or more _binaries_ as output. To build a binary, Gradle will take the source files defined for the component, compile them as appropriate for the source language, and link the result into a binary file. For an executable component, Gradle can produce executable binary files. For a library component, Gradle can produce both static and shared library binary files. For example, when you define a library called `helloworld` and build on Linux, Gradle...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/trace/generation.go

    			// Read the frame data.
    			pc, err := binary.ReadUvarint(r)
    			if err != nil {
    				return fmt.Errorf("reading frame %d's PC for stack %d: %w", i+1, id, err)
    			}
    			funcID, err := binary.ReadUvarint(r)
    			if err != nil {
    				return fmt.Errorf("reading frame %d's funcID for stack %d: %w", i+1, id, err)
    			}
    			fileID, err := binary.ReadUvarint(r)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. test/codegen/memcombine.go

    	// arm64:-`REV`
    	// amd64:-`BSWAPQ`
    	binary.BigEndian.PutUint64(b[:], binary.BigEndian.Uint64(x[:]))
    }
    
    func store_be32_load(b, x *[8]byte) {
    	// arm64:-`REVW`
    	// amd64:-`BSWAPL`
    	binary.BigEndian.PutUint32(b[:], binary.BigEndian.Uint32(x[:]))
    }
    
    func store_be32_idx(b []byte, x uint32, idx int) {
    	// amd64/v1,amd64/v2:`BSWAPL`,-`SHR.`
    	// amd64/v3:`MOVBEL\t[A-Z]+[0-9]*, \([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*1\)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                    "Method com.example.Task.getSourceCompatibility(): Is not binary compatible." to listOf("Method return type has changed", "Method is now abstract"),
                    removed("Method", "Task.setSourceCompatibility(java.lang.String)"),
                )
            }
        }
    
        @Test
        fun `should automatically accept binary incompatibilities for upgraded properties`() {
            checkBinaryCompatible(
                v1 = {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top