Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,523 for late (0.04 sec)

  1. pkg/probe/http/request.go

    }
    
    // formatURL formats a URL from args.  For testability.
    func formatURL(scheme string, host string, port int, path string) *url.URL {
    	u, err := url.Parse(path)
    	// Something is busted with the path, but it's too late to reject it. Pass it along as is.
    	//
    	// This construction of a URL may be wrong in some cases, but it preserves
    	// legacy prober behavior.
    	if err != nil {
    		u = &url.URL{
    			Path: path,
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 07:39:55 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

            this.testSourceDirs = testSourceDirs;
        }
    
        /**
         * The complete and up-to-date collection of test source directories
         *
         * This should be preferred to {@link #getTestSourceDirs()} as it will include late changes to default directories.
         *
         * @return lazily configurable collection of test source directories
         * @since 7.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules

    (CMNWconst [c] x) && !isARM64addcon(int64(c))  => (CMNW x (MOVDconst [int64(c)]))
    
    (ADDSconstflags [c] x) && !isARM64addcon(c)  => (ADDSflags x (MOVDconst [c]))
    
    // These rules remove unneeded sign/zero extensions.
    // They occur in late lower because they rely on the fact
    // that their arguments don't get rewritten to a non-extended opcode instead.
    
    // Boolean-generating instructions (NOTE: NOT all boolean Values) always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

                            println "Late added"
                        }
                    }
                }
                task mutateParent(type:Copy) {
                    from configurations.compile
                    into "output"
                    doLast {
                        configurations.conf.withDependencies {
                            println "Late added"
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/assign.go

    		case ir.ODOTPTR:
    			l := l.(*ir.SelectorExpr)
    			save(&l.X)
    		}
    
    		// Save expression on right side.
    		save(&r)
    
    		appendWalkStmt(&late, convas(ir.NewAssignStmt(base.Pos, lorig, r), &late))
    
    		// Check for reasons why we may need to compute later expressions
    		// before this assignment happens.
    
    		if name == nil {
    			// Not a direct assignment to a declared variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        /**
         * Information about modules in the main output. This field is initially null and is set to a non-null
         * value when the output directories have been set, or when it is too late for setting them.
         */
        private PathModularization outputModules;
    
        /**
         * Cache of module information about each dependency.
         */
        private final PathModularizationCache cache;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    			ExpectedActions: []core.Action{
    				core.NewGetAction(schema.GroupVersionResource{Version: "v1", Resource: "configmaps"}, metav1.NamespaceSystem, legacytokentracking.ConfigMapName),
    			},
    		},
    		"auto-generated secret has a late creation time": {
    			ExistingSecret:           configuredServiceAccountTokenSecret("2022-12-27", "", "2022-12-30", "default", "12345", ""),
    			ExistingServiceAccount:   serviceAccount(tokenSecretReferences()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            verifyHasChildren(rootBeforeEvaluated, settingsScriptAppId, 'settings', expectedGradleOps)
            verifyHasChildren(rootBeforeEvaluated, settingsPluginAppId, 'settings plugin', expectedGradleOps)
            // these all execute too late to catch any beforeProject/beforeEvaluate callbacks for itself
            verifyHasNoChildren(rootBeforeEvaluated, rootProjectScriptAppId)
            verifyHasNoChildren(rootBeforeEvaluated, rootProjectPluginAppId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/transport/Transport.java

            } finally {
                synchronized (run_thread) {
                    if (run_thread != thread) {
                        /* Thread no longer the one setup for this transport --
                         * doConnect returned too late, just ignore.
                         */
                        if (ex0 != null) {
                            if (log.level >= 2)
                                ex0.printStackTrace(log);
                        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  10. pkg/istio-agent/health/health_probers.go

    		// net.httpHeaders value is a []string but uses only index 0
    		headers[val.Name] = append(headers[val.Name], val.Value)
    	}
    	targetURL, err := url.Parse(h.Config.Path)
    	// Something is busted with the path, but it's too late to reject it. Pass it along as is.
    	if err != nil {
    		targetURL = &url.URL{
    			Path: h.Config.Path,
    		}
    	}
    	targetURL.Scheme = h.Config.Scheme
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top