Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 127 for ensure (0.21 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    // is compatible with the proto package it is being compiled against.
    // A compilation error at this line likely means your copy of the
    // proto package needs to be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		p2 := v2.InterfaceData()[1]
    
    		if p1 == 0 {
    			t.Errorf("got p1=%v. want=not-%v", p1, nil)
    		}
    
    		if p2 == 0 {
    			t.Errorf("got p2=%v. want=not-%v", p2, nil)
    		}
    	}
    }
    
    // Ensure passing in negative lengths panics.
    // See https://golang.org/issue/43603
    func TestArrayOfPanicOnNegativeLength(t *testing.T) {
    	shouldPanic("reflect: negative length passed to ArrayOf", func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    	for i := range expected {
    		if pods[i] != expected[i] {
    			t.Errorf("Expected pod[%d]: %s, but got: %s", i, expected[i].Name, pods[i].Name)
    		}
    	}
    }
    
    // TestOrderedByPriorityDisk ensures we order pods by priority and then greediest resource consumer
    func TestOrderedByPriorityDisk(t *testing.T) {
    	pod1 := newPod("above-requests-low-priority-high-usage", lowPriority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    concurrently with the initialization code. However, initialization
    always sequences
    the <code>init</code> functions: it will not invoke the next one
    until the previous one has returned.
    </p>
    
    <p>
    To ensure reproducible initialization behavior, build systems are encouraged
    to present multiple files belonging to the same package in lexical file name
    order to a compiler.
    </p>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    SelfDescribing A matcher over acceptable values. A matcher is able to describe itself to give feedback when it fails. Matcher implementations should NOT directly implement this interface. Instead, extend the BaseMatcher abstract class, which will ensure that the Matcher API can grow to support new features and remain compatible with all Matcher implementations. For easy access to common Matcher implementations, use the static factory methods in CoreMatchers. N.B. Well designed matchers should be...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				t.Errorf("expect pod status updated to happen %d times, but got %d", item.expectedPodStatusUpdates, podStatusUpdates)
    			}
    		})
    	}
    }
    
    // TestApplyNoExecuteTaints, ensures we just have a NoExecute taint applied to node.
    // NodeController is just responsible for enqueuing the node to tainting queue from which taint manager picks up
    // and evicts the pods on the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          }) {num_cores_per_replica = 1, topology =  "", device_assignment =  []} : () -> tensor<2xi32>
          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      // Ensures that separate send/recvs are added for values that are used by ops inside of multiple IfRegions.
    
      // CHECK-LABEL: func @outside_compiled_ops_multiple_tf_if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        "whose value equals to '" # value # "'">;
    
    // Ensures the array attribute's size is within the given maximum size.
    class TFL_ArrayMaxCount<int n> : AttrConstraint<
        CPred<"$_self.isa<ArrayAttr>() && $_self.cast<ArrayAttr>().size() <= " # n>,
        "whose size is at most " # n>;
    
    // Ensures the given integer attribute has the given value.
    class TFL_IntEqualsTo<int n> : AttrConstraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. src/reflect/value.go

    		return x != trunc
    	}
    	panic(&ValueError{"reflect.Value.OverflowUint", v.kind()})
    }
    
    //go:nocheckptr
    // This prevents inlining Value.Pointer when -d=checkptr is enabled,
    // which ensures cmd/compile can recognize unsafe.Pointer(v.Pointer())
    // and make an exception.
    
    // Pointer returns v's value as a uintptr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	return &genericapitesting.Simple{}
    }
    
    func (UnimplementedRESTStorage) Destroy() {
    }
    
    func (UnimplementedRESTStorage) GetSingularName() string {
    	return ""
    }
    
    // TestUnimplementedRESTStorage ensures that if a rest.Storage does not implement a given
    // method, that it is literally not registered with the server.  In the past,
    // we registered everything, and returned method not supported if it didn't support
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top