Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,123 for gems (0.07 sec)

  1. pkg/kubelet/kuberuntime/labels.go

    		}
    	}
    
    	return podSandboxInfo
    }
    
    // getPodSandboxInfoFromAnnotations gets annotatedPodSandboxInfo from annotations.
    func getPodSandboxInfoFromAnnotations(annotations map[string]string) *annotatedPodSandboxInfo {
    	return &annotatedPodSandboxInfo{
    		Annotations: annotations,
    	}
    }
    
    // getContainerInfoFromLabels gets labeledContainerInfo from labels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-gamma.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: store
    spec:
      parentRefs:
      - group: multicluster.x-k8s.io
        kind: ServiceImport
        name: store
      rules:
      - matches:
        - path:
            value: "/cart"
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 365 bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface LocalRepositoryManager extends Service {
    
        /**
         * Gets the relative path for a locally installed artifact.
         * Note that the artifact need not actually exist yet at
         * the returned location, the path merely indicates where
         * the artifact would eventually be stored.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 08 09:10:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileContents.java

    package org.gradle.api.file;
    
    import org.gradle.api.provider.Provider;
    
    /**
     * Provides lazy access to the contents of a given file.
     *
     * @since 6.1
     */
    public interface FileContents {
    
        /**
         * Gets a provider of the entire file contents as a single String.
         *
         * <p>
         * The file is read only once and only when the value is requested for the first time.
         * </p>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 08 14:00:30 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/metrics/client.go

    // using data from the resource metrics API.
    type resourceMetricsClient struct {
    	client resourceclient.PodMetricsesGetter
    }
    
    // GetResourceMetric gets the given resource metric (and an associated oldest timestamp)
    // for all pods matching the specified selector in the given namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 20:17:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-hybrid.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: store
    spec:
      parentRefs:
      - name: external-http
      rules:
      - backendRefs:
        - kind: Service
          name: store
          port: 8080
          weight: 90
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: store-global
          port: 8080
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 382 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue9400/gccgo.go

    // license that can be found in the LICENSE file.
    
    //go:build gccgo
    
    package issue9400
    
    import (
    	"runtime"
    	"sync/atomic"
    )
    
    // The test for the gc compiler resets the stack pointer so that the
    // stack gets modified.  We don't have a way to do that for gccgo
    // without writing more assembly code, which we haven't bothered to
    // do.  So this is not much of a test.
    
    var Baton int32
    
    func RewindAndSetgid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 612 bytes
    - Viewed (0)
  8. src/cmd/link/testdata/dynimportvar/main.go

    // license that can be found in the LICENSE file.
    
    // Test that we can access dynamically imported variables.
    // We ues mach_task_self_ from darwin's system library.
    // Check that loading the variable from C and Go gets the
    // same result.
    
    //go:build darwin
    
    package main
    
    /*
    #include <mach/mach_init.h>
    
    unsigned int Mach_task_self(void) {
    	return mach_task_self();
    }
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 19:39:32 UTC 2023
    - 678 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/apihelpers/helpers.go

    		existingCondition.LastTransitionTime = newCondition.LastTransitionTime
    	}
    
    	existingCondition.Reason = newCondition.Reason
    	existingCondition.Message = newCondition.Message
    }
    
    // GetFlowSchemaConditionByType gets conditions.
    func GetFlowSchemaConditionByType(flowSchema *flowcontrol.FlowSchema, conditionType flowcontrol.FlowSchemaConditionType) *flowcontrol.FlowSchemaCondition {
    	for i := range flowSchema.Status.Conditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataParseException.java

            this.columnNumber = columnNumber;
        }
    
        /**
         * Gets the one-based index of the line containing the error.
         *
         * @return The one-based index of the line containing the error or a non-positive value if unknown.
         */
        public int getLineNumber() {
            return lineNumber;
        }
    
        /**
         * Gets the one-based index of the column containing the error.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top