Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for relocs (0.1 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ParamsMatchingConstructorSelector.java

            if (constructors.size() == 1) {
                return Cast.uncheckedCast(constructors.get(0));
            }
    
            ClassGenerator.GeneratedConstructor<?> match = null;
            // NOTE: this relies on the constructors being in a predictable order
            // sorted by the number of parameters the constructor requires
            for (ClassGenerator.GeneratedConstructor<?> constructor : constructors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/os/exec_unix.go

    		return ErrProcessDone
    	}
    	return err
    }
    
    func (p *Process) release() error {
    	// We clear the Pid field only for API compatibility. On Unix, Release
    	// has always set Pid to -1. Internally, the implementation relies
    	// solely on statusReleased to determine that the Process is released.
    	p.Pid = pidReleased
    
    	switch p.mode {
    	case modeHandle:
    		// Drop the Process' reference and mark handle unusable for
    		// future calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/test/env/istio.go

    )
    
    var (
    	_, b, _, _ = runtime.Caller(0)
    
    	// Root folder of this project
    	// This relies on the fact this file is 3 levels up from the root; if this changes, adjust the path below
    	Root = filepath.Join(filepath.Dir(b), "../../..")
    )
    
    func getDefaultIstioSrc() string {
    	return Root
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-stablehlo-vhlo.mlir

      return %arg0 : tensor<!tf_type.variant<tensor<2xi32>>>
    }
    
    // -----
    
    // There are cases where ODML converter relies on constants not being folded or
    // CSE'ed. This test ensures that StableHLO<->ODML conversion does not fold.
    
    // CHECK-LABEL: mixed_no_constant_folding
    func.func @mixed_no_constant_folding() -> (tensor<f32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 22:39:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

         * @param actualOsName the OS name to check against
         * @return true if the OS matches
         *
         */
        public static boolean isFamily(String family, String actualOsName) {
            // windows probing logic relies on the word 'windows' in the OS
            boolean isWindows = actualOsName.contains(FAMILY_WINDOWS);
            boolean is9x = false;
            boolean isNT = false;
            if (isWindows) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

    };
    
    // Parse node name from "_class" or "shared_name" attributes.
    StringRef GetNodeNameFromClassAttrOrSharedNameAttr(Operation *op) {
      // Parse node name from the `shared_name` attribute first. The variable v2 op
      // relies on the share name to look up from the TensorFlow's resource manager.
      StringAttr shared_name_attr = op->getAttrOfType<StringAttr>(kSharedNameAttr);
      if (shared_name_attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/runtime/pprof/protomem_test.go

    			},
    			NumLabel: map[string][]int64{"bytes": {512 * 1024}},
    		},
    	}
    	for _, tc := range []struct {
    		name              string
    		defaultSampleType string
    	}{
    		{"heap", ""},
    		{"allocs", "alloc_space"},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			var buf bytes.Buffer
    			if err := writeHeapProto(&buf, rec, rate, tc.defaultSampleType); err != nil {
    				t.Fatalf("writing profile: %v", err)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/internal/zstd/zstd_test.go

    	input := bytes.NewReader(compressed)
    	r := NewReader(input)
    	c := testing.AllocsPerRun(10, func() {
    		input.Reset(compressed)
    		r.Reset(input)
    		io.Copy(io.Discard, r)
    	})
    	if c != 0 {
    		t.Errorf("got %v allocs, want 0", c)
    	}
    }
    
    func TestFileSamples(t *testing.T) {
    	samples, err := os.ReadDir("testdata")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, sample := range samples {
    		name := sample.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top