Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for NEW (0.08 sec)

  1. src/cmd/go/internal/load/pkg.go

    					// this mess).
    				} else {
    					data.err = r.err
    				}
    			}
    		} else if r.err != nil {
    			data.p = new(build.Package)
    			data.err = r.err
    		} else if cfg.ModulesEnabled && path != "unsafe" {
    			data.p = new(build.Package)
    			data.err = fmt.Errorf("unknown import path %q: internal error: module loader did not resolve import", r.path)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          if (addend_shape.getShape().size() != 1) return failure();
        }
    
        // Calculate new bias.  Generate a new FC; it will be constant folded.
        auto old_bias = fc_op.getBias();
        if (!old_bias || mlir::isa<NoneType>(old_bias.getType())) {
          // TODO(b/180752069): Figure out new bias' type when old bias is empty.
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	return &operationGenerator{
    		kubeClient:      kubeClient,
    		volumePluginMgr: volumePluginMgr,
    		recorder:        recorder,
    		blkUtil:         blkUtil,
    		translator:      csitrans.New(),
    	}
    }
    
    // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
    type OperationGenerator interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    		[]string{"ls"})
    	assert.Error(t, err)
    	assert.Nil(t, output, "output should be nil")
    }
    
    func TestRunInContainer(t *testing.T) {
    	ctx := context.Background()
    	for _, testError := range []error{nil, errors.New("bar")} {
    		testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    		defer testKubelet.Cleanup()
    		kubelet := testKubelet.kubelet
    		fakeRuntime := testKubelet.fakeRuntime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy filter-prerouting ct state new jump firewall-check
    		add rule ip kube-proxy filter-forward ct state new jump service-endpoints-check
    		add rule ip kube-proxy filter-forward ct state new jump cluster-ips-check
    		add rule ip kube-proxy filter-input ct state new jump nodeport-endpoints-check
    		add rule ip kube-proxy filter-input ct state new jump service-endpoints-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    }
    
    func BenchmarkReferencesDiffs(t *testing.B) {
    	t.ReportAllocs()
    	t.ResetTimer()
    	for n := 0; n < t.N; n++ {
    		old := []metav1.OwnerReference{{UID: "1"}, {UID: "2"}}
    		new := []metav1.OwnerReference{{UID: "2"}, {UID: "3"}}
    		referencesDiffs(old, new)
    	}
    }
    
    // TestDependentsRace relies on golang's data race detector to check if there is
    // data race among in the dependents field.
    func TestDependentsRace(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    		}
    		devIps, err := fake.GetLocalAddresses("kube-ipvs0")
    		if err != nil {
    			t.Errorf("Unexpected error: %v", err)
    		}
    		ips = ips.Difference(devIps)
    		if !ips.Equal(sets.New(tc.expectIPs...)) {
    			t.Errorf("case[%d], unexpected mismatch, expected: %v, got: %v", i, tc.expectIPs, ips)
    		}
    	}
    }
    
    func TestNodePortIPv4(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{name: "transition rules",
    			obj: map[string]interface{}{
    				"v": "new",
    			},
    			oldObj: map[string]interface{}{
    				"v": "old",
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"v": stringType,
    			}),
    			valid: []string{
    				"oldSelf.v != self.v",
    				"oldSelf.v == 'old' && self.v == 'new'",
    			},
    		},
    		{name: "skipped transition rule for nil old primitive",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      # Ingest logs against new resources like "k8s_container" and "k8s_node" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "new".
      # Ingest logs against old resources like "gke_container" and "gce_instance" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "old".
      if [[ "${LOGGING_STACKDRIVER_RESOURCE_TYPES:-old}" == "new" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	housekeepingPeriod = time.Second * 2
    
    	// Duration at which housekeeping failed to satisfy the invariant that
    	// housekeeping should be fast to avoid blocking pod config (while
    	// housekeeping is running no new pods are started or deleted).
    	housekeepingWarningDuration = time.Second * 1
    
    	// Period after which the runtime cache expires - set to slightly longer than
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top