Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for pats (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                // Pass build JVM args through to daemon via system property on the launcher JVM
                String quotedArgs = join(" ", collect(gradleInvocation.buildJvmArgs, input -> String.format("'%s'", input)));
                gradleInvocation.implicitLauncherJvmArgs.add("-Dorg.gradle.jvmargs=" + quotedArgs);
            } else {
                // Have to pass build JVM args directly to launcher JVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	// and Port names directly in nftables chain names (though note that this assumes
    	// that the chain name won't *start* with any of those strings, since that might
    	// be illegal). We use "/" to separate the parts of the name, which is one of the
    	// two characters allowed in a chain name that isn't allowed in our input strings.
    
    	name := fmt.Sprintf("%s/%s/%s/%s",
    		servicePortName.NamespacedName.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	align []uint8 // symbol 2^N alignment, indexed by global index
    
    	deferReturnTramp map[Sym]bool // whether the symbol is a trampoline of a deferreturn call
    
    	objByPkg map[string]uint32 // map package path to the index of its Go object reader
    
    	anonVersion int // most recently assigned ext static sym pseudo-version
    
    	// Bitmaps and other side structures used to store data used to store
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // TODO(fengliuai): move this to the sanity check of pre-quantize pass.
    def eliminate_dq_q_pairs : Pat<
      (TFL_QuantizeOp (TFL_DequantizeOp $in), $qt),
      (replaceWithValue $in),
      [(NotFromQuantOpOrSameQuantType $in, $qt)]>;
    
    // Matching HardSwish
    def MatchHardSwishPattern1 : Pat<
      (TFL_MulOp
        (TFL_MulOp
         $x, (TFL_AddOp
              $x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	result := []*unstructured.Unstructured{}
    	err := filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    		} else if d.IsDir() {
    			return nil
    		} else if filepath.Ext(d.Name()) != ".yaml" {
    			return nil
    		}
    		// Read the file in as []byte
    		data, err := os.ReadFile(path)
    		if err != nil {
    			return err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	// Create new temporary directory and arrange to clean it up.
    	path := t.TempDir()
    
    	// Stat of path should succeed.
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    
    	// Stat of path+"/" should succeed too.
    	path += "/"
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    }
    
    func TestNilProcessStateString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    		},
    	}
    
    	burstSyncs := 2
    	logger.V(2).Info("Iptables sync params", "minSyncPeriod", minSyncPeriod, "syncPeriod", syncPeriod, "burstSyncs", burstSyncs)
    	// We pass syncPeriod to ipt.Monitor, which will call us only if it needs to.
    	// We need to pass *some* maxInterval to NewBoundedFrequencyRunner anyway though.
    	// time.Hour is arbitrary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    			// If we're passing through ProcSyscallAbandoned, then there's no promotion
    			// to do. We've lost the M that this P is associated with. However it got there,
    			// it's going to appear as idle in the API, so pass through as idle.
    			oldState = ProcIdle
    			ev.args[1] = uint64(go122.ProcSyscallAbandoned)
    		} else if s.status != status {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    // inet.af/netaddr -> go4.org/intern -> assume-no-moving-gc.
    // This was causing a significant amount of friction around each new
    // release, so we added this bool for the package to //go:linkname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			wantStatus:            framework.AsStatus(errors.New("preemption: running RemovePod on PreFilter plugin \"test-plugin\": failed to remove pod: p")),
    		},
    		{
    			name: "one failed with TestPlugin and the other pass",
    			pod:  st.MakePod().Name("p").UID("p").Namespace(v1.NamespaceDefault).Priority(highPriority).Req(largeRes).Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Name("p1").UID("p1").Namespace(v1.NamespaceDefault).Node("node1").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top