Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 350 for GETs (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetFailurePolicy() *v1.FailurePolicyType
    	// GetMatchPolicy gets the webhook MatchPolicy field.
    	GetMatchPolicy() *v1.MatchPolicyType
    	// GetNamespaceSelector gets the webhook NamespaceSelector field.
    	GetNamespaceSelector() *metav1.LabelSelector
    	// GetObjectSelector gets the webhook ObjectSelector field.
    	GetObjectSelector() *metav1.LabelSelector
    	// GetSideEffects gets the webhook SideEffects field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the POM file of the project to build.
         *
         * @return The POM file of the project or {@code null} if not applicable (i.e. when processing a POM from the
         *         repository).
         * @deprecated Use {@link #getPomPath()} instead.
         */
        @Deprecated
        File getPomFile();
    
        /**
         * Gets the POM file of the project to build.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/cluster.go

    	if !newControlPlane {
    		// gets the nodeRegistration for the current from the node object
    		kubeconfigFile := filepath.Join(kubeconfigDir, constants.KubeletKubeConfigFileName)
    		if err := GetNodeRegistration(kubeconfigFile, client, &initcfg.NodeRegistration); err != nil {
    			return nil, errors.Wrap(err, "failed to get node registration")
    		}
    		// gets the APIEndpoint for the current node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/testing/framework/fake_listers.go

    // List returns []v1.ReplicationController, the list of all ReplicationControllers.
    func (f ControllerLister) List(labels.Selector) ([]*v1.ReplicationController, error) {
    	return f, nil
    }
    
    // GetPodControllers gets the ReplicationControllers that have the selector that match the labels on the given pod
    func (f ControllerLister) GetPodControllers(pod *v1.Pod) (controllers []*v1.ReplicationController, err error) {
    	var selector labels.Selector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

                assertContents(containsLine(containsString('AvoidMultipleUnaryOperators'))).
                assertContents(not(containsLine(containsString('OverrideBothEqualsAndHashcode'))))
        }
    
        def "gets reasonable message when priority level threshold is out of range from extension"() {
            goodCode()
            buildFile << """
            pmd {
                rulesMinimumPriority = 11
            }
    """
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            gradle6Result.assertOutputContains("Hello from Gradle <7.0")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24609")
        def "when plugin request fails because plugin requires a higher version of Gradle, gets clear custom error message"() {
            given:
            def producer = file('producer')
            def consumer = file('consumer')
            def pluginModule = mavenRepo.module('com.example', 'producer', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @param description the description. May be null
         * @return this configuration
         */
        Configuration setDescription(@Nullable String description);
    
        /**
         * Gets an ordered set including this configuration and all superconfigurations
         * recursively.
         * @return the set of all configurations
         */
        Set<Configuration> getHierarchy();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top