Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 275 for SO (0.02 sec)

  1. src/sync/mutex.go

    		}
    	} else {
    		// Starving mode: handoff mutex ownership to the next waiter, and yield
    		// our time slice so that the next waiter can start to run immediately.
    		// Note: mutexLocked is not set, the waiter will set it after wakeup.
    		// But mutex is still considered locked if mutexStarving is set,
    		// so new coming goroutines won't acquire it.
    		runtime_Semrelease(&m.sema, true, 1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            if (stopState.get() == DaemonStopState.Forced) {
                // The daemon could not be stopped cleanly, so the services could still be doing work.
                // Don't attempt to stop the services, just stop this process
                return;
            }
    
            // Daemon has finished work, so stop the services
            buildProcessState.close();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    				{
    					Name: "tls on tls port",
    					Call: mkCall(8080, simulation.MTLS),
    					// no ports defined, so we will passthrough
    					Result: simulation.Result{ClusterMatched: "InboundPassthroughCluster"},
    				},
    				{
    					Name: "plaintext on plaintext port",
    					Call: mkCall(9090, simulation.Plaintext),
    					// no ports defined, so we will passthrough
    					Result: simulation.Result{ClusterMatched: "InboundPassthroughCluster"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultClassFileTransformer.java

                // This is not something we want, so we notify the class loader about this.
                instrumentingLoader.transformFailed(className, th);
                return null;
            }
        }
    
        public static boolean tryInstall() {
            // Installing the same transformer multiple times is very problematic, so additional correctness check is worth it.
            if (!INSTALLED.compareAndSet(false, true)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    						}
    						serversByRouteName[routeName] = append(serversByRouteName[routeName], s)
    					} else {
    						// We have duplicate port. Its not in plaintext servers. So, this has to be a TLS server.
    						// Check if this is also a HTTP server and if so, ensure uniqueness of port name.
    						if gateway.IsHTTPServer(s) {
    							if routeName == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
     *   <li>All threads generated must be joined inside each test case method (or {@code fail} to do
     *       so) before returning from the method. The {@code joinPool} method can be used to do this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            //  Currently it is hard to have a proper "-javaagent:/path/to/jar" in clients that start the daemon, so all code deals with a boolean flag shouldApplyAgent instead.
            //  It is also possible to have the agent attached at runtime, without the flag, so flag checking is preferred.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                // the delegate. So, only treat references to `Project` properties as a problem and throw 'missing property' exception for anything unknown so that the closure can continue
                // with the delegate
                if (targetMetadata.hasProperty(null, propertyName) == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/controller/job/success_policy.go

    		}
    		if succeededIndexes[succeededPointer].Last < ruleIndexes[rulePointer].Last {
    			// The current succeeded interval is behind, so we can move to the next.
    			succeededPointer++
    		} else if succeededIndexes[succeededPointer].Last > ruleIndexes[rulePointer].Last {
    			// The current rule interval is behind, so we can move to the next.
    			rulePointer++
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/build-init/build.gradle.kts

            exclude(module = "cdi-api") // To respect the Maven exclusion
        }
        compileOnly(libs.maven3Compat)
    
        // 3 dependencies below are recommended as implementation but doing so adds them to the distribution
        // TODO Check why we reference them and if so, why they don't need to be in the distribution
        compileOnly(libs.maven3Artifact)
        compileOnly(libs.mavenResolverApi)
        compileOnly(libs.plexusClassworlds)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top