Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 174 for additional (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                allprojects {
                    repositories {
                        maven { url = '${mavenHttpRepo.uri}' }
                    }
                    configurations.outgoing.outgoing.variants {
                        additional {
                            attributes {
                                attribute(color, 'purple')
                                artifact(producer.output)
                            }
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//
    	// IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
    	// if the object being admitted is modified by other admission plugins after the initial webhook call.
    	// Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted.
    	// Note:
    	// * the number of additional invocations is not guaranteed to be exactly one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Suggested HTTP return code for this status, 0 if not set.
    	// +optional
    	Code int32 `json:"code,omitempty" protobuf:"varint,6,opt,name=code"`
    }
    
    // StatusDetails is a set of additional properties that MAY be set by the
    // server to provide additional information about a response. The Reason
    // field of a Status object defines what attributes will be set. Clients
    // must ignore fields that do not match the defined type of each attribute,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    }
                }
    """)
    
            when:
            run "publish"
    
            then:
            javaLibrary.assertPublishedAsJavaModule()
        }
    
        void "can publish additional artifacts for java project"() {
            requiresExternalDependencies = true
            given:
            createBuildScripts("""
                $dependencies
    
                task sourceJar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // it transfers the local buffer into the profile. As part of that step, it also
    // transfers any "additional contention" time to the profile. Any lock
    // contention that it experiences while adding samples to the profile will be
    // recorded later as "additional contention" and not include a call stack, to
    // avoid an echo.
    type lockTimer struct {
    	lock      *mutex
    	timeRate  int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    To configure this bucket notification, we need the ARN printed by MinIO in the previous step. Additional information about ARN is available [here](http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		name         string
    		workEstimate fcrequest.WorkEstimate
    	}{
    		{
    			name: "request has additional latency",
    			workEstimate: fcrequest.WorkEstimate{
    				InitialSeats:      1,
    				FinalSeats:        10,
    				AdditionalLatency: time.Minute,
    			},
    		},
    		{
    			name: "request has no additional latency",
    			workEstimate: fcrequest.WorkEstimate{
    				InitialSeats: 10,
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	q.resolved = append(q.resolved, m)
    }
    
    // updateBuildList updates the module loader's global build list to be
    // consistent with r.resolvedVersion, and to include additional modules
    // provided that they do not conflict with the resolved versions.
    //
    // If the additional modules conflict with the resolved versions, they will be
    // downgraded to a non-conflicting version (possibly "none").
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                }
                gradleInvocation.implicitLauncherJvmArgs.add(debugLauncher.toDebugArgument());
            }
            gradleInvocation.implicitLauncherJvmArgs.add("-ea");
        }
    
        /**
         * Returns additional JVM args that should be used to start the build JVM.
         */
        protected List<String> getImplicitBuildJvmArgs() {
            List<String> buildJvmOpts = new ArrayList<>();
            buildJvmOpts.add("-ea");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    						Status: v1.ConditionFalse,
    					},
    					{
    						Type:   v1.PodScheduled,
    						Status: v1.ConditionTrue,
    					},
    				},
    				Message: "Message",
    			},
    		},
    		{
    			"additional pod condition",
    			false,
    			false,
    			func(input v1.PodStatus) v1.PodStatus {
    				input.Conditions = append(input.Conditions, v1.PodCondition{
    					Type:   v1.PodConditionType("example.com/feature"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top