Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,091 for GETs (0.03 sec)

  1. pkg/volume/util/fs/fs_unsupported.go

    func Info(path string) (int64, int64, int64, int64, int64, int64, error) {
    	return 0, 0, 0, 0, 0, 0, fmt.Errorf("fsinfo not supported for this build")
    }
    
    // DiskUsage gets disk usage of specified path.
    func DiskUsage(path string) (UsageInfo, error) {
    	var usage UsageInfo
    	return usage, fmt.Errorf("directory disk usage not supported for this build.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r64/ToolingApiIdeaModelJavaVersionCrossVersionSpec.groovy

    import org.gradle.tooling.model.idea.IdeaProject
    
    @TargetGradleVersion(">=6.4")
    class ToolingApiIdeaModelJavaVersionCrossVersionSpec extends ToolingApiSpecification {
    
        def "gets language level from release property if set"() {
            given:
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                plugins {
                    id 'java-library'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

            ->Add(preset_datasets.begin(), preset_datasets.end());
      }
    
      // Create a new `QuantizationSpecs` to replace the existing one. The
      // expansion from `StaticRangePtqPreset` gets populated first and then
      // user-provided explicit `QuantizationSpec`s will be appended.
      QuantizationSpecs new_specs{};
      *new_specs.add_specs() =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/manager.go

    	m.sourcesReady = sourcesReady
    	go wait.Until(func() { m.reconcileLoop() }, m.reconcilePeriod, wait.NeverStop)
    	return nil
    }
    
    // reconcileLoop ensures that any stale state in the manager's claimInfoCache gets periodically reconciled.
    func (m *ManagerImpl) reconcileLoop() {
    	// Only once all sources are ready do we attempt to reconcile.
    	// This ensures that the call to m.activePods() below will succeed with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	"k8s.io/apiserver/pkg/admission"
    	clientset "k8s.io/client-go/kubernetes"
    	corelisters "k8s.io/client-go/listers/core/v1"
    )
    
    type NamespaceSelectorProvider interface {
    	// GetNamespaceSelector gets the webhook NamespaceSelector field.
    	GetParsedNamespaceSelector() (labels.Selector, error)
    }
    
    // Matcher decides if a request is exempted by the NamespaceSelector of a
    // webhook configuration.
    type Matcher struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingResult.java

    import org.apache.maven.toolchain.model.PersistedToolchains;
    
    /**
     * Collects the output of the toolchains builder.
     *
     * @since 3.3.0
     */
    public interface ToolchainsBuildingResult {
    
        /**
         * Gets the assembled toolchains.
         *
         * @return The assembled toolchains, never {@code null}.
         */
        PersistedToolchains getEffectiveToolchains();
    
        /**
         * Return a list of problems, if any.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadataAccessor.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    public interface FileMetadataAccessor {
        /**
         * Gets the file metadata of a {@link File}.
         * <p>
         * If the type of the file cannot be determined, or is
         * neither {@link org.gradle.internal.file.FileType#RegularFile}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pkg/util/procfs/procfs_unsupported.go

    limitations under the License.
    */
    
    package procfs
    
    import (
    	"fmt"
    	"syscall"
    )
    
    type ProcFS struct{}
    
    func NewProcFS() ProcFSInterface {
    	return &ProcFS{}
    }
    
    // GetFullContainerName gets the container name given the root process id of the container.
    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    	return "", fmt.Errorf("GetFullContainerName is unsupported in this build")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils.go

    		ordinal = int(i)
    	}
    	return parent, ordinal
    }
    
    // getParentName gets the name of pod's parent StatefulSet. If pod has not parent, the empty string is returned.
    func getParentName(pod *v1.Pod) string {
    	parent, _ := getParentNameAndOrdinal(pod)
    	return parent
    }
    
    // getOrdinal gets pod's ordinal. If pod has no ordinal, -1 is returned.
    func getOrdinal(pod *v1.Pod) int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/TaskExecution.java

        private final String path;
        private TaskState state;
    
        public TaskExecution(String taskPath) {
            super(taskPath);
            this.path = taskPath;
        }
    
        /**
         * Gets the string task path.
         */
        public String getPath() {
            return path;
        }
    
        public String getStatus() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top