Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,549 for operator_ (0.13 sec)

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

    		},
    		// Test with the different operators and values for pod affinity scheduling preference, including some match failures.
    		{
    			name: "Affinity: different Label operators and values for pod affinity scheduling preference, including some match failures ",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  2. src/html/template/js.go

    		}
    		return jsCtxRegexp
    	// Suffixes for all punctuators from section 7.7 of the language spec
    	// that only end binary operators not handled above.
    	case ',', '<', '>', '=', '*', '%', '&', '|', '^', '?':
    		return jsCtxRegexp
    	// Suffixes for all punctuators from section 7.7 of the language spec
    	// that are prefix operators not handled above.
    	case '!', '~':
    		return jsCtxRegexp
    	// Matches all the punctuators from section 7.7 of the language spec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    	{token.ARROW, "<-", operator},
    	{token.INC, "++", operator},
    	{token.DEC, "--", operator},
    
    	{token.EQL, "==", operator},
    	{token.LSS, "<", operator},
    	{token.GTR, ">", operator},
    	{token.ASSIGN, "=", operator},
    	{token.NOT, "!", operator},
    
    	{token.NEQ, "!=", operator},
    	{token.LEQ, "<=", operator},
    	{token.GEQ, ">=", operator},
    	{token.DEFINE, ":=", operator},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/operator/v1alpha1"
    	revtag "istio.io/istio/istioctl/pkg/tag"
    	"istio.io/istio/operator/pkg/apis/istio"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/cache"
    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/metrics"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/object"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // (of number and type) between the verbs and their arguments.
    //
    // See the documentation of the fmt package for the complete set of
    // format operators and their operand types.
    //
    // # Examples
    //
    // The %d format operator requires an integer operand.
    // Here it is incorrectly applied to a string:
    //
    //	fmt.Printf("%d", "hello") // fmt.Printf format %d has arg "hello" of wrong type string
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/ensurer/strategy.go

    	// a. the annotation key is missing.
    	// b. the annotation key is present but the value does not represent a boolean.
    	// In either case, if the operator hasn't changed the spec, we can safely auto update.
    	// Please note that we can't protect the changes made by the operator in the following scenario:
    	// - The operator deletes and recreates the same object with a variant spec (generation resets to 1).
    	if accessor.GetGeneration() == 1 {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

      tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
    
      tuple& operator=(const tuple& t) { return CopyFrom(t); }
    
      template <GTEST_2_TYPENAMES_(U)>
      tuple& operator=(const GTEST_2_TUPLE_(U)& t) {
        return CopyFrom(t);
      }
      template <typename U0, typename U1>
      tuple& operator=(const ::std::pair<U0, U1>& p) {
        f0_ = p.first;
        f1_ = p.second;
        return *this;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

        std::unique_ptr<Graph>* graph_out, FunctionLibraryDefinition* library);
    
    // The attribute that marks function calls produced by the encapsulate
    // subgraphs pass and that should in turn be compiled via XlaLaunch operators.
    extern const char* const kXlaCompiledKernelAttr;
    
    // Does `node` have the kXlaCompiledKernelAttr attribute?
    bool IsXlaCompiledKernel(const Node& node);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

      tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
    
      tuple& operator=(const tuple& t) { return CopyFrom(t); }
    
      template <GTEST_2_TYPENAMES_(U)>
      tuple& operator=(const GTEST_2_TUPLE_(U)& t) {
        return CopyFrom(t);
      }
      template <typename U0, typename U1>
      tuple& operator=(const ::std::pair<U0, U1>& p) {
        f0_ = p.first;
        f1_ = p.second;
        return *this;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    			x: &Requirement{
    				key:       "key1",
    				operator:  selection.Equals,
    				strValues: []string{"foo", "bar"},
    			},
    			y: &Requirement{
    				key:       "key2",
    				operator:  selection.Equals,
    				strValues: []string{"foo", "bar"},
    			},
    			want: false,
    		},
    		{
    			name: "requirements with different operators should not be equal",
    			x: &Requirement{
    				key:       "key",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
Back to top