Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for Option (0.18 sec)

  1. cmd/metrics-v2.go

    		for i := range globalScannerMetrics.actions {
    			action := lifecycle.Action(i)
    			v := globalScannerMetrics.lifetimeActions(action)
    			if v == 0 {
    				continue
    			}
    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: ilmSubsystem,
    					Name:      MetricName("action_count_" + toSnake(action.String())),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				fakeClock.Step(time.Second)
    			}
    
    			for _, action := range test.actions {
    				switch {
    				case action.podPopped != nil:
    					popPod(t, logger, q, action.podPopped)
    				case action.eventHappens != nil:
    					q.MoveAllToActiveOrBackoffQueue(logger, *action.eventHappens, nil, nil, nil)
    				case action.podEnqueued != nil:
    					err := q.AddUnschedulableIfNotPresent(logger, action.podEnqueued, q.SchedulingCycle())
    					if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                f = response.fid;
            }
    
            return f;
        }
        void open( int flags, int access, int attrs, int options ) throws SmbException {
            if( isOpen() ) {
                return;
            }
            fid = open0( flags, access, attrs, options );
            opened = true;
            tree_num = tree.tree_num;
        }
        boolean isOpen() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    Term        = production_name | token [ "…" token ] | Group | Option | Repetition .
    Group       = "(" Expression ")" .
    Option      = "[" Expression "]" .
    Repetition  = "{" Expression "}" .
    </pre>
    
    <p>
    Productions are expressions constructed from terms and the following
    operators, in increasing precedence:
    </p>
    <pre class="grammar">
    |   alternation
    ()  grouping
    []  option (0 or 1 times)
    {}  repetition (0 to n times)
    </pre>
    
    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. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <type>boolean</type>
              <description>If set to true, this profile will be active unless another profile in this
                pom is activated using the command line -P option or by one of that profile's
                activators.</description>
            </field>
            <field>
              <name>jdk</name>
              <version>4.0.0+</version>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "options": {
              "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. cmd/server_test.go

    func (s *TestSuiteCommon) TestBucketPolicy(c *check) {
    	// Sample bucket policy.
    	bucketPolicyBuf := `{"Version":"2012-10-17","Statement":[{"Action":["s3:GetBucketLocation","s3:ListBucket"],"Effect":"Allow","Principal":{"AWS":["*"]},"Resource":["arn:aws:s3:::%s"]},{"Action":["s3:GetObject"],"Effect":"Allow","Principal":{"AWS":["*"]},"Resource":["arn:aws:s3:::%s/this*"]}]}`
    
    	// generate a random bucket Name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    		if parsedIP.Is6() {
    			// CI has some issues with ipv6 DNS resolution, due to which
    			// we are not able to directly use the host name in the connectivity tests.
    			// Hence using a bogus IPv6 address with -HHost option as a workaround to
    			// simulate ServiceEntry based wildcard listener scenarios.
    			fakeExternalAddress = "2002::1"
    		} else {
    			fakeExternalAddress = "1.1.1.1"
    		}
    	}
    
    	testCases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (one_by_one && trivial_strides && trivial_dilations) {
        return "NHWC";
      }
    
      // If filter spatial dimensions are unknown or not 1x1 we prefer NCHW, because
      // it's the fastest option on NVIDIA GPUs with cuDNN library support.
      return "NCHW";
    }
    
    //===----------------------------------------------------------------------===//
    // Conv2dBackpropFilterOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	GoString() string
    	goString(indent int, field string) string
    }
    
    // ASTToString returns the demangled name of the AST.
    func ASTToString(a AST, options ...Option) string {
    	tparams := true
    	enclosingParams := true
    	llvmStyle := false
    	max := 0
    	for _, o := range options {
    		switch {
    		case o == NoTemplateParams:
    			tparams = false
    		case o == NoEnclosingParams:
    			enclosingParams = false
    		case o == LLVMStyle:
    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