Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 101 for Nodes (0.09 sec)

  1. pkg/proxy/nftables/proxier.go

    		// then jump to externalPolicyChain.
    		if usesExternalTrafficChain {
    			if !svcInfo.ExternalPolicyLocal() {
    				// If we are using non-local endpoints we need to masquerade,
    				// in case we cross nodes.
    				tx.Add(&knftables.Rule{
    					Chain: externalTrafficChain,
    					Rule: knftables.Concat(
    						"jump", markMasqChain,
    					),
    				})
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if containerStatus != nil {
    		restartCount = containerStatus.RestartCount + 1
    	} else {
    		// The container runtime keeps state on container statuses and
    		// what the container restart count is. When nodes are rebooted
    		// some container runtimes clear their state which causes the
    		// restartCount to be reset to 0. This causes the logfile to
    		// start at 0.log, which either overwrites or appends to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    	tests := []struct {
    		name string
    		ip   Addr
    		std  net.IP
    	}{
    		{
    			name: "IPv4 unspecified",
    			ip:   IPv4Unspecified(),
    			std:  net.IPv4zero,
    		},
    		{
    			name: "IPv6 link-local all nodes",
    			ip:   IPv6LinkLocalAllNodes(),
    			std:  net.IPv6linklocalallnodes,
    		},
    		{
    			name: "IPv6 link-local all routers",
    			ip:   IPv6LinkLocalAllRouters(),
    			std:  net.IPv6linklocalallrouters,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    			activeNATChains.Insert(externalTrafficChain)
    
    			if !svcInfo.ExternalPolicyLocal() {
    				// If we are using non-local endpoints we need to masquerade,
    				// in case we cross nodes.
    				natRules.Write(
    					"-A", string(externalTrafficChain),
    					"-m", "comment", "--comment", fmt.Sprintf(`"masquerade traffic for %s external destinations"`, svcPortNameString),
    					"-j", string(kubeMarkMasqChain))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-allowlist=quantize_float_placeholder_only,not_reset_input" | FileCheck %s
    // RUN: tf-opt %s -tfl-prepare-quantize="disable-set-input-nodes-quantization-params=true" | FileCheck --check-prefix=MixedPrecision %s
    // RUN: tf-opt %s -tfl-prepare-quantize="is-qdq-conversion=true" | FileCheck --check-prefix=QDQ %s
    
    // CHECK-LABEL: main
    // Uses `main` function to match the default target function of QuantSpecs and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    	{"bug12xE", "{{printf `%T` 0xEE}}", "int", T{}, true},
    	{"bug12Xe", "{{printf `%T` 0Xef}}", "int", T{}, true},
    	{"bug12XE", "{{printf `%T` 0XEE}}", "int", T{}, true},
    	// Chained nodes did not work as arguments. Issue 8473.
    	{"bug13", "{{print (.Copy).I}}", "17", tVal, true},
    	// Didn't protect against nil or literal values in field chains.
    	{"bug14a", "{{(nil).True}}", "", tVal, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    	{"bug12xE", "{{printf `%T` 0xEE}}", "int", T{}, true},
    	{"bug12Xe", "{{printf `%T` 0Xef}}", "int", T{}, true},
    	{"bug12XE", "{{printf `%T` 0XEE}}", "int", T{}, true},
    	// Chained nodes did not work as arguments. Issue 8473.
    	{"bug13", "{{print (.Copy).I}}", "17", tVal, true},
    	// Didn't protect against nil or literal values in field chains.
    	{"bug14a", "{{(nil).True}}", "", tVal, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    		keyFunc:               util.GetPodFullName,
    		unschedulableRecorder: unschedulableRecorder,
    		gatedRecorder:         gatedRecorder,
    	}
    }
    
    // nominator is a structure that stores pods nominated to run on nodes.
    // It exists because nominatedNodeName of pod objects stored in the structure
    // may be different than what scheduler has here. We should be able to find pods
    // by their UID and update/delete them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // outside the pass. Note that in the case of the backwards pass existing
      // this will be the case.
      // This means that when we have put all out sections together some resource
      // inputs will have multiple TPUReplicateInput nodes, so we will need a final
      // pass to merge these together into the earliest copy.
      llvm::SetVector<int64_t> forward_variable_inputs;
    
      // Validate that the only resource inputs that are read by ops in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    				prefs := desired.remove(v.ID)
    				if v.Op == OpPhi {
    					// TODO: if v is a phi, save desired register for phi inputs.
    					// For now, we just drop it and don't propagate
    					// desired registers back though phi nodes.
    					continue
    				}
    				regspec := s.regspec(v)
    				// Cancel desired registers if they get clobbered.
    				desired.clobber(regspec.clobbers)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top