Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for _Equal (0.12 sec)

  1. pkg/apis/apps/validation/validation_test.go

    						RollingUpdate: &apps.RollingUpdateDaemonSet{
    							MaxUnavailable: intstr.FromInt32(1),
    						},
    					},
    				},
    			},
    		},
    		"unchanged templateGeneration upon semantically equal template update": {
    			old: apps.DaemonSet{
    				ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    				Spec: apps.DaemonSetSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        // Update the result type of this op with the resource's type. We only use
        // the resource subtype of the first user since shapes from all the users
        // should be equal or compatible.
        return UpdateTypeAndInsertIncompatibleUseCasts(subtype, op->getResult(0));
      }
      return false;
    }
    
    // Helper structure to capture shapes & types for Dataset input.
    struct DatasetInput {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    				}
    			}
    
    			if !maps.EqualFunc(tt.expectedVirtualHosts, vh, slices.Equal) {
    				t.Errorf("got unexpected virtual hosts. Expected: %v, Got: %v", tt.expectedVirtualHosts, vh)
    			}
    			if !maps.Equal(tt.expectedHTTPRoutes, hr) {
    				t.Errorf("got unexpected number of http routes. Expected: %v, Got: %v", tt.expectedHTTPRoutes, hr)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    			t.Errorf("Body read: %v", err)
    			return
    		}
    		if len(slurp) != len(requestBody) {
    			t.Errorf("Backend read %d request body bytes; want %d", len(slurp), len(requestBody))
    			return
    		}
    		if !bytes.Equal(slurp, requestBody) {
    			t.Error("Backend read wrong request body.") // 1MB; omitting details
    			return
    		}
    		bodyOkay <- true
    		<-gone
    		gotCloseNotify <- true
    	})).ts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    
    	// get the object
    	checkobj, err := registry.Get(testContext, podA.Name, &metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    	// verify objects are equal
    	if e, a := objA, checkobj; !reflect.DeepEqual(e, a) {
    		t.Errorf("Expected %#v, got %#v", e, a)
    	}
    
    	// now try to create the second pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	for _, c := range pod.Spec.Containers {
    		if cs, ok := podutil.GetContainerStatus(podStatus.ContainerStatuses, c.Name); ok {
    			if cs.Resources == nil {
    				continue
    			}
    			if !cmp.Equal(c.Resources.Limits, cs.Resources.Limits) || !cmp.Equal(cs.AllocatedResources, cs.Resources.Requests) {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        new_outputs = converted_model.signatures[signature_key](**model_inputs)
    
        # The difference between TF and XLA path is expected to be small (smaller
        # or equal to 1 in the quantized domain).
        self.assertAllClose(new_outputs, expected_outputs, atol=1e-1)
    
      @parameterized.parameters(
          testing.parameter_combinations([{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "description": "stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).",
                "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	hostname, hostDomainName, err := kl.GeneratePodHostNameAndDomain(pod)
    	if err != nil {
    		return nil, nil, err
    	}
    	// nodename will be equal to hostname if SetHostnameAsFQDN is nil or false. If SetHostnameFQDN
    	// is true and hostDomainName is defined, nodename will be the FQDN (hostname.hostDomainName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return precPrimary
    }
    
    // printBase is common print code for types that are printed with a
    // simple suffix.
    func printBase(ps *printState, qual, base AST) {
    	ps.inner = append(ps.inner, qual)
    	ps.print(base)
    	if len(ps.inner) > 0 {
    		qual.(innerPrinter).printInner(ps)
    		ps.inner = ps.inner[:len(ps.inner)-1]
    	}
    }
    
    // PointerType is a pointer type.
    type PointerType struct {
    	Base AST
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top