Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,247 for whatev (0.1 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * <p>
         * For further details on permissions see {@link ConfigurableUserClassFilePermissions}.
         * <p>
         * Note that the provided configuration action only applies incremental modifications on top of whatever permission
         * the user has at the moment and that the default values permissions start out are different for files and directories
         * (see {@link UserClassFilePermissions}).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/time/sys_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package time
    
    import (
    	"errors"
    	"syscall"
    )
    
    // for testing: whatever interrupts a sleep
    func interrupt() {
    }
    
    func open(name string) (uintptr, error) {
    	fd, err := syscall.Open(name, syscall.O_RDONLY, 0)
    	if err != nil {
    		// This condition solves issue https://go.dev/issue/50248
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:19:07 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. src/time/sys_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build plan9
    
    package time
    
    import (
    	"errors"
    	"syscall"
    )
    
    // for testing: whatever interrupts a sleep
    func interrupt() {
    	// cannot predict pid, don't want to kill group
    }
    
    func open(name string) (uintptr, error) {
    	fd, err := syscall.Open(name, syscall.O_RDONLY)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1016 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/AbstractInjectedClasspathInstrumentationStrategy.kt

            return if (isThirdPartyAgentPresent) {
                // Currently, the build logic instrumentation can interfere with Java agents, such as Jacoco
                // So, disable or fail or whatever based on which execution modes are enabled
                whenThirdPartyAgentPresent()
            } else {
                CachedClasspathTransformer.StandardTransform.BuildLogic
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Success.java

     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Signifies that the command completed successfully.
     * <p>
     * The value of the result is whatever the command produced on the server.
     * Its meaning depends on the original command.
     * <p>
     * This result type does permit {@code null} values. If it is an error for a certain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    	b0.Event("GoStart", trace.GoID(5), testgen.Seq(1))
    	b0.Event("GoStop", "whatever", testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/DefaultMirrorSelectorTest.java

    @Deprecated
    class DefaultMirrorSelectorTest {
        @Test
        void testMirrorWithMirrorOfPatternContainingANegationIsNotSelected() {
            ArtifactRepository repository = new DefaultArtifactRepository("snapshots.repo", "http://whatever", null);
            String pattern = "external:*, !snapshots.repo";
            assertFalse(DefaultMirrorSelector.matchPattern(repository, pattern));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/ForegroundDaemonConfiguration.java

            // Foreground daemon cannot be 'told' what's his startup options as the client sits in the same process so we will infer the jvm opts from the inputArguments()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/concurrent/WorkerLimits.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Limits configured for workers in the current build.
     * <p>
     * Workers can be threads, processes or whatever Gradle considers a "worker".
     * <p>
     * Some examples:
     * <ul>
     *     <li>A thread running a task</li>
     *     <li>A test process</li>
     *     <li>A language compiler in a forked process</li>
     * </ul>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:30:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/kube/util_test.go

    					Name:        "bar",
    					Labels:      map[string]string{"a": "b"},
    					Annotations: map[string]string{"c": "d"},
    					ManagedFields: []metav1.ManagedFieldsEntry{
    						{
    							Manager: "whatever",
    						},
    					},
    				},
    			},
    			want: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace:   "foo",
    					Name:        "bar",
    					Labels:      map[string]string{"a": "b"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top