Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 207 for greater (0.46 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			return fmt.Errorf("PodSchedulingContext object with UID %s is not owned by Pod %s/%s", schedulingCtx.UID, pod.Namespace, pod.Name)
    		}
    	}
    	p.schedulingCtx = schedulingCtx
    	return nil
    }
    
    // publish creates or updates the PodSchedulingContext object, if necessary.
    // Must not be called concurrently.
    func (p *podSchedulingState) publish(ctx context.Context, pod *v1.Pod, clientset kubernetes.Interface) error {
    	if !p.isDirty() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                root(":", ":test:") {
                    module('org:test:1.0')
                }
            }
    
            and:
            outputDoesNotContain("Cannot set attributes for dependency \"org:test:1.0\": it was probably created by a plugin using internal APIs")
        }
    
        def "can declare attributes on constraints"() {
            given:
            repository {
                'org:test:1.0'()
            }
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            toList(container.withType(type)) == iterationOrder(c, a)
            toList(container.withType(otherType)) == iterationOrder(d)
        }
    
        def "provider for element is queried when filtered collection with matching type created"() {
            containerAllowsExternalProviders()
            def provider = Mock(ProviderInternal)
    
            addToContainer(c)
            container.addLater(provider)
            addToContainer(d)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The following configurations were never meant to be consumed:
    
     - The `antlr` configuration created by the `AntlrPlugin`
     - The `zinc` configuration created by the `ScalaBasePlugin`
     - The `providedCompile` and `providedRuntime` configurations created by the `WarPlugin`
    
    These configurations were deprecated for consumption and are now no longer consumable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	return fakeContainers
    }
    
    // makeTestContainer creates a test api container.
    func makeTestContainer(name, image string) v1.Container {
    	return v1.Container{
    		Name:  name,
    		Image: image,
    	}
    }
    
    // makeTestPod creates a test api pod.
    func makeTestPod(podName, podNamespace, podUID string, containers []v1.Container) *v1.Pod {
    	return &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    	// Batch the pod creates. Batch sizes start at SlowStartInitialBatchSize
    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    	// likely all fail with the same error. For example a project with a
    	// low quota that attempts to create a large number of pods will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When the `visual-studio` plugin is applied to the root project, a task named `visualStudio` is created, which will generate a Visual Studio solution file containing all components in the build. This solution will include a Visual Studio project for each component, as well as configuring each component to build using Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	// Sanity check: all DIEs created in the linker should be named.
    	if name == "" {
    		panic("nameless DWARF DIE")
    	}
    
    	var st sym.SymKind
    	switch abbrev {
    	case dwarf.DW_ABRV_FUNCTYPEPARAM, dwarf.DW_ABRV_DOTDOTDOT, dwarf.DW_ABRV_STRUCTFIELD, dwarf.DW_ABRV_ARRAYRANGE:
    		// There are no relocations against these dies, and their names
    		// are not unique, so don't create a symbol.
    		return die
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [source,kotlin]
    ----
    extra["myNewProperty"] = "initial value"  // <1>
    
    tasks.create("myTask") {
        doLast {
            println("Property: ${project.extra["myNewProperty"]}")  // <2>
        }
    }
    ----
    <1> Creates a new project extra property called `myNewProperty` and sets its value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    					MediaTypeSubType: "json",
    					EncodesAsText:    true,
    					Serializer:       json.NewSerializer(json.DefaultMetaFactory, creator, typer, false),
    					PrettySerializer: json.NewSerializer(json.DefaultMetaFactory, creator, typer, true),
    					StrictSerializer: json.NewSerializerWithOptions(json.DefaultMetaFactory, creator, typer, json.SerializerOptions{
    						Strict: true,
    					}),
    					StreamSerializer: &runtime.StreamSerializerInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top