Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for someConf (0.14 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    + "\nIt can be specified from the command line, e.g: '" + getPath() + " --configuration someConf --dependency someDep'");
            }
    
            if (getDependencySpec() == null) {
                throw new InvalidUserDataException("Dependency insight report cannot be generated because the dependency to show was not specified."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    	stopped := false
    	var asyncM *m
    	var asyncGen uint32
    	var nextPreemptM int64
    	for i := 0; ; i++ {
    		switch s := readgstatus(gp); s {
    		default:
    			if s&_Gscan != 0 {
    				// Someone else is suspending it. Wait
    				// for them to finish.
    				//
    				// TODO: It would be nicer if we could
    				// coalesce suspends.
    				break
    			}
    
    			dumpgstatus(gp)
    			throw("invalid g status")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

    If you select "Watching" instead of "Releases only" you will receive notifications when someone creates a new issue or question. You can also specify that you only want to be notified about new issues, or discussions, or PRs, etc.
    
    Then you can try and help them solve those questions.
    
    ## Ask Questions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. istioctl/cmd/root.go

    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/runtime/chan.go

    	// Ensure the value being sent is kept alive until the
    	// receiver copies it out. The sudog has a pointer to the
    	// stack object, but sudogs aren't considered as roots of the
    	// stack tracer.
    	KeepAlive(ep)
    
    	// someone woke us up.
    	if mysg != gp.waiting {
    		throw("G waiting list is corrupted")
    	}
    	gp.waiting = nil
    	gp.activeStackChans = false
    	closed := !mysg.success
    	gp.param = nil
    	if mysg.releasetime > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

        private Loader storeIfAbsent(ProtectionDomain domain, Loader newLoader) {
            Loader oldLoader = loaders.putIfAbsent(domain, newLoader);
            if (oldLoader != null) {
                // Discard the new loader, someone beat us with storing it.
                IoActions.closeQuietly(newLoader);
                return oldLoader;
            }
            return newLoader;
        }
    
        @Override
        public void close() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		}
    	}
    	localFileName := filepath.Join(u.dir.LocalDir(), "local."+expiryDate+".json")
    	uploadFileName := filepath.Join(u.dir.LocalDir(), expiryDate+".json")
    
    	/* Prepare to write files */
    	// if either file exists, someone has been here ahead of us
    	// (there is still a race, but this check shortens the open window)
    	if _, err := os.Stat(localFileName); err == nil {
    		u.deleteFiles(countFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				continue
    			}
    			if err := check.Check(r); err != nil {
    				slis.ObserveHealthcheck(context.Background(), check.Name(), name, slis.Error)
    				// don't include the error since this endpoint is public.  If someone wants more detail
    				// they should have explicit permission to the detailed checks.
    				fmt.Fprintf(&individualCheckOutput, "[-]%s failed: reason withheld\n", check.Name())
    				// but we do want detailed information for our log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    buildLogicInputHasChanged(valueSource)
                } else {
                    null
                }
            }.getOrMapFailure { failure ->
                // This can only happen if someone ignored configuration cache problems and still stored the entry.
                // We're invalidating the cache to save the user a manual "rm -rf .gradle/configuration-cache", as there is no way out.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/deadstore.go

    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    	walkloop:
    		if loadUse.contains(v.ID) {
    			// Someone might be reading this memory state.
    			// Clear all shadowed addresses.
    			shadowed.clear()
    		}
    		if v.Op == OpStore || v.Op == OpZero {
    			ptr := v.Args[0]
    			var off int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top