Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for SELF (0.04 sec)

  1. src/runtime/mgcmark.go

    			gp.waitsince = work.tstart
    		}
    
    		// scanstack must be done on the system stack in case
    		// we're trying to scan our own stack.
    		systemstack(func() {
    			// If this is a self-scan, put the user G in
    			// _Gwaiting to prevent self-deadlock. It may
    			// already be in _Gwaiting if this is a mark
    			// worker or we're in mark termination.
    			userG := getg().m.curg
    			selfScan := gp == userG && readgstatus(userG) == _Grunning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    				go func3(c)
    			}
    			// Let goroutines block on channel
    			for j := 0; j < 5; j++ {
    				runtime.Gosched()
    			}
    		}
    	})
    
    	SetGoroutineLabels(WithLabels(context.Background(), Labels("self-label", "self-value")))
    	defer SetGoroutineLabels(context.Background())
    
    	garbage := new(*int)
    	fingReady := make(chan struct{})
    	runtime.SetFinalizer(garbage, func(v **int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    			if err != nil {
    				return nil, fmt.Errorf("unable to generate self signed cert: %w", err)
    			}
    
    			if err := certutil.WriteCert(kc.TLSCertFile, cert); err != nil {
    				return nil, err
    			}
    
    			if err := keyutil.WriteKey(kc.TLSPrivateKeyFile, key); err != nil {
    				return nil, err
    			}
    
    			klog.V(4).InfoS("Using self-signed cert", "TLSCertFile", kc.TLSCertFile, "TLSPrivateKeyFile", kc.TLSPrivateKeyFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    		// against a set of regexps in comments.
    		ops := t.wantedAsmOpcodes(long)
    		self := runtime.GOOS + "/" + runtime.GOARCH
    		for _, env := range ops.Envs() {
    			// Only run checks relevant to the current GOOS/GOARCH,
    			// to avoid triggering a cross-compile of the runtime.
    			if string(env) != self && !strings.HasPrefix(string(env), self+"/") && !*allCodegen {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                val contextProvider = ContextCollector.process(
                    firFile,
                    sessionHolder,
                    designation,
                    shouldCollectBodyContext = false, // we only query SELF context
                    filter = { ContextCollector.FilterResponse.CONTINUE }
                )
    
                return FirTowerDataContextProvider(contextProvider)
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    /* Override javadoc styles */
    .site-header div {
    	font-family: 'Lato', Arial, sans-serif;
    }
    
    .site-header__navigation-header a {
    	align-self: center;
    	border-bottom: 0 none;
    	height: 36px;
    }
    
    .site-header .site-header-version {
    	align-self: center;
    	color: #1da2bd;
    	font-size: 20px;
    	padding-left: 1px;
    	margin-top: 22px;
    }
    
    .site-header__navigation {
        z-index: 2;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Gradle uses a Java agent to modify the bytecode.
    Integrity self-checks of some libraries may fail because of the changed bytecode or the agent's presence.
    
    To work around this, you can use the <<worker_api.adoc#tasks_parallel_worker, Worker API>> with classloader or process isolation to encapsulate the library code.
    The bytecode of the worker's classpath is not modified, so the self-checks should pass.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    var gcMarkWorkerModeStrings = [...]string{
    	"Not worker",
    	"GC (dedicated)",
    	"GC (fractional)",
    	"GC (idle)",
    }
    
    // pollFractionalWorkerExit reports whether a fractional mark worker
    // should self-preempt. It assumes it is called from the fractional
    // worker.
    func pollFractionalWorkerExit() bool {
    	// This should be kept in sync with the fractional worker
    	// scheduler logic in findRunnableGCWorker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top