Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for SELF (0.37 sec)

  1. 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)
  2. 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)
  3. src/internal/trace/order.go

    	newCtx := curCtx
    	if mid == curCtx.M {
    		// We're stealing from ourselves. This behaves like a ProcStop.
    		if curCtx.P != pid {
    			return curCtx, false, fmt.Errorf("tried to self-steal proc %d (thread %d), but got proc %d instead", pid, mid, curCtx.P)
    		}
    		newCtx.P = NoProc
    		o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    		return newCtx, true, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/ambient/baseline_test.go

    			(src.Config().Service != dst.Config().Service) &&
    			!dst.Config().HasSidecar() {
    			// Check original source, unless there is a waypoint in the path. For waypoint, we don't (yet?) propagate original src.
    			// Self call is also (temporarily) broken
    			// Sidecars lose the original src
    			opt.Check = check.And(opt.Check, OriginalSourceCheck(t, src))
    		}
    
    		// Non-HBONE clients will attempt to bypass the waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    //   - SignatureAlgorithm
    //   - Subject
    //   - SubjectKeyId
    //   - URIs
    //   - UnknownExtKeyUsage
    //
    // The certificate is signed by parent. If parent is equal to template then the
    // certificate is self-signed. The parameter pub is the public key of the
    // certificate to be generated and priv is the private key of the signer.
    //
    // The returned slice is the certificate in DER encoding.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    LOCAL_STORAGE_CAPACITY_ISOLATION=${LOCAL_STORAGE_CAPACITY_ISOLATION:-"true"} # current default
    # This is the default dir and filename where the apiserver will generate a self-signed cert
    # which should be able to be used as the CA to verify itself
    CERT_DIR=${CERT_DIR:-"/var/run/kubernetes"}
    ROOT_CA_FILE=${CERT_DIR}/server-ca.crt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            when:
            conf.runDependencyActions()
    
            then:
            1 * defaultDependencyAction.execute(conf.dependencies)
            0 * _
        }
    
        def "dependency actions are called on self first, then on parent"() {
            def parentWhenEmptyAction = Mock(Action)
            def parentMutation = Mock(Action)
            def parent = conf("parent", ":parent")
            parent.defaultDependencies parentWhenEmptyAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    See <<#sub:using_child_copy_specifications,Using child copy specifications>> for more information on this feature.
    
    [[sec:archives]]
    === Understanding archive creation
    
    Archives are essentially self-contained file systems, and Gradle treats them as such.
    This is why working with archives is similar to working with files and directories.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         * find the containing binary expression and resolve that instead.
         *
         * However, if, say, `+=` resolves to `plusAssign`, then the LHS is self-contained. In this case we do not return the containing binary
         * expression so that the FIR element corresponding to the LHS is used directly.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top