Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for compared (0.29 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			},
    			failedNodes: []*v1.Node{},
    			want: []framework.NodeScore{
    				{Name: "node-a", Score: 33}, // +13, compared to maxSkew=1
    				{Name: "node-b", Score: 66}, // +6, compared to maxSkew=1
    				{Name: "node-c", Score: 100},
    				{Name: "node-d", Score: 16}, // +16, compared to maxSkew=1
    			},
    		},
    		{
    			name: "one constraint on node, all 4 nodes are candidates, maxSkew=3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // operand to be used in a failure message.  The type (but not value)
    // of the other operand may affect the format.  This allows us to
    // print a char* as a raw pointer when it is compared against another
    // char* or void*, and print it as a C string when it is compared
    // against an std::string object, for example.
    //
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    template <typename T1, typename T2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// xref: https://github.com/google/cel-spec/wiki/proposal-210
    
    				// compare integers with all float types
    				"double(self.val1) < self.val4": 6,
    				"self.val1 < int(self.val4)":    6,
    				"double(self.val1) < self.val5": 6,
    				"self.val1 < int(self.val5)":    6,
    				"double(self.val1) < self.val6": 6,
    				"self.val1 < int(self.val6)":    6,
    
    				// compare literal integers and floats
    				"double(5) < 10.0": 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // operand to be used in a failure message.  The type (but not value)
    // of the other operand may affect the format.  This allows us to
    // print a char* as a raw pointer when it is compared against another
    // char* or void*, and print it as a C string when it is compared
    // against an std::string object, for example.
    //
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    template <typename T1, typename T2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	//
    	// At a high level, this value is computed as the bytes of memory
    	// allocated (cons) per unit of scan work completed (mark) in a GC
    	// cycle, divided by the CPU time spent on each activity.
    	//
    	// Updated at the end of each GC cycle, in endCycle.
    	consMark float64
    
    	// lastConsMark is the computed cons/mark value for the previous 4 GC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    	CMPgt = Cmp(1)
    )
    
    // Compare compares types for purposes of the SSA back
    // end, returning a Cmp (one of CMPlt, CMPeq, CMPgt).
    // The answers are correct for an optimizer
    // or code generator, but not necessarily typechecking.
    // The order chosen is arbitrary, only consistency and division
    // into equivalence classes (Types that compare CMPeq) matters.
    func (t *Type) Compare(x *Type) Cmp {
    	if x == t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        // This allows for different result shapes from operand shapes. While these
        // shapes are imported and set as a part of the result type, there is no
        // indicator differentiating between having no output shapes compared to
        // having all unranked shapes. Thus this attribute is set to determine
        // which shape function behavior to use for this op, specifically
        // propagating operand shapes as result shapes when this attribute is not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    			return "", "", 0, e
    		}
    		if n <= uint32(len(b)) {
    			return "", "", 0, e
    		}
    	}
    }
    
    // Various types of pre-specified SIDs that can be synthesized and compared at runtime.
    type WELL_KNOWN_SID_TYPE uint32
    
    const (
    	WinNullSid                                    = 0
    	WinWorldSid                                   = 1
    	WinLocalSid                                   = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    //   [DONE] Irrelevant for delete, as Delete doesn't write data (nor compare it).
    // - https://github.com/kubernetes/kubernetes/pull/47703
    //   [DONE] Irrelevant for delete, because Delete doesn't persist data.
    // - https://github.com/kubernetes/kubernetes/pull/48394/
    //   [DONE] Irrelevant for delete, because Delete doesn't compare data.
    // - https://github.com/kubernetes/kubernetes/pull/43152
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    If the last comment in the function starts with "Output:" then the output
    is compared exactly against the comment (see examples below). If the last
    comment begins with "Unordered output:" then the output is compared to the
    comment, however the order of the lines is ignored. An example with no such
    comment is compiled but not executed. An example with no text after
    "Output:" is compiled, executed, and expected to produce no output.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top