Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for _default_ (0.39 sec)

  1. pkg/kube/inject/testdata/inputs/default.template.gen.yaml

            service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote }}
          annotations: {
            istio.io/rev: {{ .Revision | default "default" | quote }},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    queue_dir            (path)               staging dir for undelivered messages e.g. '/home/events'
    queue_limit          (number)             maximum limit for undelivered messages, defaults to '100000'
    max_open_connections (number)             maximum number of open connections to the database, defaults to '2'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// Defaults to 0 (pod will be considered available as soon as it is ready)
    	// +optional
    	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,5,opt,name=minReadySeconds"`
    
    	// The number of old ReplicaSets to retain to allow rollback.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// Defaults to 10.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        }
    
        ValueHolder* const new_holder = new ValueHolder(default_);
        ThreadLocalValueHolderBase* const holder_base = new_holder;
        GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
        return new_holder->pointer();
      }
    
      // A key pthreads uses for looking up per-thread values.
      const pthread_key_t key_;
      const T default_;  // The default value for each thread.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Defaults to 0 (pod will be considered available as soon as it is ready)
    	// +optional
    	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,5,opt,name=minReadySeconds"`
    
    	// The number of old ReplicaSets to retain to allow rollback.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// Defaults to 10.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// IngressRuleValue represents a rule to route requests for this IngressRule.
    	// If unspecified, the rule defaults to a http catch-all. Whether that sends
    	// just traffic matching the host to the default backend or all traffic to the
    	// default backend, is left to the controller fulfilling the Ingress. Http is
    	// currently the only supported IngressRuleValue.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                  }
                ],
                "default": {},
                "description": "Spec holds information about the request being evaluated."
              },
              "status": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectRulesReviewStatus"
                  }
                ],
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				continue
    			}
    
    			if isRequired[k] == false && obj.Default == nil {
    				allErrs = append(allErrs, field.Required(fldPath.Child("items").Child("properties").Key(k).Child("default"), "this property is in x-kubernetes-list-map-keys, so it must have a default or be a required property"))
    			}
    
    			if obj.Nullable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	c := new(CaseClause)
    	c.pos = p.pos()
    
    	switch p.tok {
    	case _Case:
    		p.next()
    		c.Cases = p.exprList()
    
    	case _Default:
    		p.next()
    
    	default:
    		p.syntaxError("expected case or default or }")
    		p.advance(_Colon, _Case, _Default, _Rbrace)
    	}
    
    	c.Colon = p.pos()
    	p.want(_Colon)
    	c.Body = p.stmtList()
    
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
        }
    
        def "uses dependency management section from imported POM in active profile to define defaults for main POM body dependency"() {
            given:
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
Back to top