Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 365 for regular (0.13 sec)

  1. pkg/controller/serviceaccount/tokens_controller_test.go

    	sa := serviceAccount(secretRefs)
    	sa.ResourceVersion = "2"
    	return sa
    }
    
    // opaqueSecret returns a persisted non-ServiceAccountToken secret named "regular-secret-1"
    func opaqueSecret() *v1.Secret {
    	return &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "regular-secret-1",
    			Namespace:       "default",
    			UID:             "23456",
    			ResourceVersion: "1",
    		},
    		Type: "Opaque",
    		Data: map[string][]byte{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                details == 'A property of type \'File\' annotated with @Input cannot determine how to interpret the file'
                solutions == [
                    'Annotate with @InputFile for regular files',
                    'Annotate with @InputFiles for collections of files',
                    'If you want to track the path, return File.absolutePath as a String and keep @Input',
                ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    5 Brands}@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:Font Awesome\ 5 Free;font-style...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ```
    
    The code following the `yield` statement is executed after the response has been delivered:
    
    ```Python hl_lines="5-6"
    {!../../../docs_src/dependencies/tutorial007.py!}
    ```
    
    !!! tip
        You can use `async` or regular functions.
    
        **FastAPI** will do the right thing with each, the same as with normal dependencies.
    
    ## A dependency with `yield` and `try`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    - `runtimeElements`, the regular variant offered by the `java-library` plugin
    - `instrumentedJars`, the variant we have created
    
    In particular, say we want the instrumented classes on the test runtime classpath.
    We can now, on the consumer, declare our dependency as a regular project dependency:
    
    .Declaring the project dependency
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. pkg/kubelet/pod/pod_manager.go

    	// the pod can be found, return it and true for wasMirror.
    	GetPodAndMirrorPod(*v1.Pod) (pod, mirrorPod *v1.Pod, wasMirror bool)
    
    	// GetPods returns the regular pods bound to the kubelet and their spec.
    	GetPods() []*v1.Pod
    
    	// GetPodsAndMirrorPods returns the set of pods, the set of mirror pods, and
    	// the pod fullnames of any orphaned mirror pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/generate/generate.go

    Go generate accepts two specific flags:
    
    	-run=""
    		if non-empty, specifies a regular expression to select
    		directives whose full original source text (excluding
    		any trailing spaces and final newline) matches the
    		expression.
    
    	-skip=""
    		if non-empty, specifies a regular expression to suppress
    		directives whose full original source text (excluding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/types.go

    //
    //go:nosplit
    func (i *Int32) Add(delta int32) int32 {
    	return Xaddint32(&i.value, delta)
    }
    
    // Int64 is an atomically accessed int64 value.
    //
    // 8-byte aligned on all platforms, unlike a regular int64.
    //
    // An Int64 must not be copied.
    type Int64 struct {
    	noCopy noCopy
    	_      align64
    	value  int64
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/VariantsDependencySubstitutionRulesIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/13204")
        def "can substitute a platform dependency with a regular dependency"() {
            mavenRepo.module("org", "lib", "1.0").publish()
    
            buildFile << """
    
                repositories {
                   maven { url "${mavenRepo.uri}" }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. pkg/controller/job/backoff_utils_test.go

    				},
    			},
    			wantFinishTime: defaultTestTime,
    		},
    		// In this case, init container is stopped after the regular containers.
    		// This is because with the sidecar (restartable init) containers,
    		// sidecar containers will always finish later than regular containers.
    		"Pod with sidecar container and all containers terminated": {
    			pod: v1.Pod{
    				Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top