Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for hasExt (0.24 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            List<DependencyManagement> importMgmts = null;
    
            List<Dependency> deps = new ArrayList<>(depMgmt.getDependencies());
            for (Iterator<Dependency> it = deps.iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
                        || "bom".equals(dependency.getType())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            importIds.add(importing);
    
            List<org.apache.maven.api.model.DependencyManagement> importMgmts = null;
    
            for (Iterator<Dependency> it = depMgmt.getDependencies().iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
                        || "bom".equals(dependency.getType())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    func (p *podWorkers) ShouldPodRuntimeBeRemoved(uid types.UID) bool {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    	if status, ok := p.podSyncStatuses[uid]; ok {
    		return status.IsTerminated()
    	}
    	// a pod that hasn't been sent to the pod worker yet should have no runtime components once we have
    	// synced all content.
    	return p.podsSynced
    }
    
    func (p *podWorkers) ShouldPodContentBeRemoved(uid types.UID) bool {
    	p.podLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                if (this.maxSpan && (!this.maxDate || this.startDate.clone().a...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                if (!String.valueOf(CLIManager.SET_USER_PROPERTY).equals(option.getOpt())) {
                    List<String> values = option.getValuesList();
                    for (ListIterator<String> it = values.listIterator(); it.hasNext(); ) {
                        it.set(interpolator.interpolate(it.next()));
                    }
                }
                commandLineBuilder.addOption(option);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		if controllerErr != nil {
    			t.Errorf("Expected no error from the controller, but got: %#v", controllerErr)
    		}
    	})
    
    	t.Run("priority level concurrency is set to 1, request times out and inner handler hasn't written to the response yet", func(t *testing.T) {
    		t.Parallel()
    		const (
    			userName                                              = "alice"
    			fsName                                                = "test-fs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    					Message:            "Kubelet never posted node status.",
    					LastHeartbeatTime:  node.CreationTimestamp,
    					LastTransitionTime: nowTimestamp,
    				})
    			} else {
    				logger.V(2).Info("Node hasn't been updated",
    					"node", klog.KObj(node), "duration", nc.now().Time.Sub(nodeHealth.probeTimestamp.Time), "nodeConditionType", nodeConditionType, "currentCondition", currentCondition)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    filter { null }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            !file('dest/two.b').readLines().iterator().hasNext()
        }
    
        def "nested specs and details arent extensible objects"() {
            given:
            file("a/a.txt").touch()
    
            buildScript """
                task copy(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	if _, err := os.Stat(pathf("%s/VERSION", goroot)); err == nil {
    		// If we have a VERSION file, then we use the Go version
    		// instead of build IDs as a cache key, and there is no guarantee
    		// that code hasn't changed since the last time we ran a build
    		// with this exact VERSION file (especially if someone is working
    		// on a release branch). We must not fall back to the shared build cache
    		// in this case. Leave $GOCACHE alone.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. src/net/http/request.go

    //
    //	Host
    //	URL
    //	Method (defaults to "GET")
    //	Header
    //	ContentLength
    //	TransferEncoding
    //	Body
    //
    // If Body is present, Content-Length is <= 0 and [Request.TransferEncoding]
    // hasn't been set to "identity", Write adds "Transfer-Encoding:
    // chunked" to the header. Body is closed after it is sent.
    func (r *Request) Write(w io.Writer) error {
    	return r.write(w, false, nil, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top