Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 631 for binder (0.2 sec)

  1. pkg/apis/core/types.go

    	ReadOnly bool
    }
    
    // CinderVolumeSource represents a cinder volume resource in Openstack. A Cinder volume
    // must exist before mounting to a container. The volume must also be
    // in the same region as the kubelet. Cinder volumes support ownership
    // management and SELinux relabeling.
    type CinderVolumeSource struct {
    	// Unique id of the volume used to identify the cinder volume.
    	VolumeID string
    	// Filesystem type to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/static/trace_viewer_full.html

          background-color: hsla(216, 100%, 94.5%, .75);
          border-color: hsl(216, 100%, 89%);
          box-sizing: border-box;
          z-index: -1;
        }
        #sparkline.positive {
          border-right-style: solid;
          /* The border width must be kept in sync with buildSparklineStyle_(). */
          border-right-width: 1px;
        }
        #sparkline:not(.positive) {
          border-left-style: solid;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
    	// cinder represents a cinder volume attached and mounted on kubelets host machine.
    	// More info: https://examples.k8s.io/mysql-cinder-pd/README.md
    	// +optional
    	Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"`
    	// cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/crd_finder_test.go

    				Kind:  "MyCRD",
    			},
    			{
    				Group: "crd.com",
    				Kind:  "MyNewCRD",
    			},
    		}, nil
    	}
    	finder := NewCRDFinder(getter)
    
    	if found, _ := finder.HasCRD(schema.GroupKind{Group: "crd.com", Kind: "MyCRD"}); !found {
    		t.Fatalf("Failed to find CRD MyCRD")
    	}
    	if found, _ := finder.HasCRD(schema.GroupKind{Group: "crd.com", Kind: "Random"}); found {
    		t.Fatalf("Found crd Random that doesn't exist")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can configure tool executables"() {
            def binDir = testDirectory.createDir("bin")
            wrapperTool(binDir, "c-compiler", toolChain.CCompiler, "-DFRENCH")
            wrapperTool(binDir, "static-lib", toolChain.staticLibArchiver)
            wrapperTool(binDir, "linker", toolChain.linker)
    
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/bigger-applications.md

    * finde das Modul `dependencies` (eine imaginäre Datei unter `app/routers/dependencies.py`) ...
    * und importiere daraus die Funktion `get_token_header`.
    
    Aber diese Datei existiert nicht, unsere Abhängigkeiten befinden sich in einer Datei unter `app/dependencies.py`.
    
    Erinnern Sie sich, wie unsere Anwendungs-/Dateistruktur aussieht:
    
    <img src="/img/tutorial/bigger-applications/package.svg">
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/TypeSafeProjectDependencyFactory.java

        private final ProjectFinder finder;
    
        protected TypeSafeProjectDependencyFactory(DefaultProjectDependencyFactory factory, ProjectFinder finder) {
            this.factory = factory;
            this.finder = finder;
        }
    
        protected ProjectDependencyInternal create(String path) {
            return (ProjectDependencyInternal) factory.create(finder.getProject(path));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureSpecificVisualCpp.java

        public File getBinDir() {
            return binDir;
        }
    
        @Override
        public List<File> getPath() {
            return paths;
        }
    
        @Override
        public File getCompilerExecutable() {
            return new File(binDir, COMPILER_FILENAME);
        }
    
        @Override
        public File getLinkerExecutable() {
            return new File(binDir, LINKER_FILENAME);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractCacheCleanupTest.groovy

            deletedFiles == [file, parent]
        }
    
        FilesFinder finder(files) {
            Stub(FilesFinder) {
                find(_, _) >> { baseDir, filter ->
                    assert filter instanceof NonReservedFileFilter
                    files.findAll { filter.accept(it) }
                }
            }
        }
    
        AbstractCacheCleanup cleanupAction(FilesFinder finder, Spec<File> spec) {
            new AbstractCacheCleanup(finder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

                )
            }.toList()
    
        if (binDir != null) {
            writeFile(
                moduleFileFor(binDir, moduleName),
                moduleMetadataBytesFor(emittedClassNames)
            )
        }
    
        return emittedClassNames
    }
    
    
    internal
    fun IO.makeAccessorOutputDirs(srcDir: File, binDir: File?, packagePath: String) = io {
        srcDir.resolve(packagePath).mkdirs()
        binDir?.apply {
            resolve(packagePath).mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top