Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 311 for holder (0.28 sec)

  1. cmd/metacache-walk.go

    				pop := dirStack[len(dirStack)-1]
    				select {
    				case <-ctx.Done():
    					return ctx.Err()
    				case out <- metaCacheEntry{name: pop}:
    				}
    				if opts.Recursive {
    					// Scan folder we found. Should be in correct sort order where we are.
    					err := scanDir(pop)
    					if err != nil && !IsErrIgnored(err, context.Canceled) {
    						internalLogIf(ctx, err)
    					}
    				}
    				dirStack = dirStack[:len(dirStack)-1]
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/init.go

    }
    
    // ManifestDir returns the path where manifest should be stored or the temporary folder path in case of DryRun.
    func (d *initData) ManifestDir() string {
    	if d.dryRun {
    		return d.dryRunDir
    	}
    	return kubeadmconstants.GetStaticPodDirectory()
    }
    
    // KubeletDir returns path of the kubelet configuration folder or the temporary folder in case of DryRun.
    func (d *initData) KubeletDir() string {
    	if d.dryRun {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

    .multi-language-selector .language-option[data-lang='kotlin'] {
        background-position: 30px center;
        padding-left: 27px;
    }
    
    .multi-language-selector .language-option {
        background-color: white;
        border: 1px solid #f7f7f8;
        border-radius: 4px 4px 0 0;
        cursor: pointer;
        display: inline-block;
        font-weight: normal;
        font-family: 'Lato', Arial, sans-serif;
        margin: 0;
        padding: 4px 20px;
        min-width: 130px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            new File(temporaryFolder, "jdks/jdk-mac/" + DefaultJdkCacheDirectory.MARKER_FILE).createNewFile()
    
            def install2 = new File(temporaryFolder, "jdks/jdk-mac-2/some-jdk-folder/Contents/Home").tap { mkdirs() }
            new File(temporaryFolder, "jdks/jdk-mac-2/" + DefaultJdkCacheDirectory.MARKER_FILE).createNewFile()
    
            new File(temporaryFolder, "jdks/notReady").tap { mkdirs() }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/join.go

    }
    
    // KubeConfigDir returns the path of the Kubernetes configuration folder or the temporary folder path in case of DryRun.
    func (j *joinData) KubeConfigDir() string {
    	if j.dryRun {
    		return j.dryRunDir
    	}
    	return kubeadmconstants.KubernetesDir
    }
    
    // KubeletDir returns the path of the kubelet configuration folder or the temporary folder in case of DryRun.
    func (j *joinData) KubeletDir() string {
    	if j.dryRun {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

                    .run()
            }
    
            then:
            !events.operations.any { it.download }
        }
    
        @TargetGradleVersion(">=3.5 <7.3")
        def "older versions do not generate typed events for downloads during dependency resolution"() {
            setupBuildWithArtifactDownloadDuringConfiguration()
    
            when:
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/config/model.go

    // Spec defines the spec for the config. In order to use below helper methods,
    // this must be one of:
    // * golang/protobuf Message
    // * gogo/protobuf Message
    // * Able to marshal/unmarshal using json
    type Spec any
    
    func ToProto(s Spec) (*anypb.Any, error) {
    	// golang protobuf. Use protoreflect.ProtoMessage to distinguish from gogo
    	// golang/protobuf 1.4+ will have this interface. Older golang/protobuf are gogo compatible
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		"couldn't upgrade control plane. kubeadm has tried to recover everything into the earlier state. Errors faced")
    }
    
    // rollbackEtcdData rolls back the content of etcd folder if something went wrong.
    // When the folder contents are successfully rolled back, nil is returned, otherwise an error is returned.
    func rollbackEtcdData(cfg *kubeadmapi.InitConfiguration, pathMgr StaticPodPathManager) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/certs.go

    }
    
    func runCerts(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("certs phase invoked with an invalid data struct")
    	}
    
    	fmt.Printf("[certs] Using certificateDir folder %q\n", data.CertificateWriteDir())
    	return nil
    }
    
    func runCAPhase(ca *certsphase.KubeadmCert) func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(InitData)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

            }
    
            and:
            runBuildWithScanRequest()
    
            then:
            pluginAppliedOnce()
    
            where:
            sequence | version
            "older"  | PLUGIN_MINIMUM_VERSION
            "same"   | PLUGIN_AUTO_APPLY_VERSION
            "newer"  | PLUGIN_NEWER_VERSION
        }
    
        def "uses #sequence version of plugin when added to buildscript classpath"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top