Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for Returns (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvedDependency.java

        /**
         * Returns the configuration under which this instance was resolved.
         */
        String getConfiguration();
    
        /**
         * Returns the module which this resolved dependency belongs to.
         *
         * @return The module.
         */
        ResolvedModuleVersion getModule();
    
        /**
         * Returns the transitive ResolvedDependency instances of this resolved dependency. Returns never null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Started field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithStarted(value bool) *ContainerStatusApplyConfiguration {
    	b.Started = &value
    	return b
    }
    
    // WithAllocatedResources sets the AllocatedResources field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailureDetails.java

    @Incubating
    public interface TestFailureDetails {
    
        /**
         * Returns the failure message.
         *
         * @return the failure message
         */
        @Nullable
        String getMessage();
    
        /**
         * The fully-qualified name of the underlying exception type.
         *
         * @return the class name
         */
        String getClassName();
    
        /**
         * Returns the stacktrace of the failure.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

      /** Returns the empty array. */
      public static ImmutableDoubleArray of() {
        return EMPTY;
      }
    
      /** Returns an immutable array containing a single value. */
      public static ImmutableDoubleArray of(double e0) {
        return new ImmutableDoubleArray(new double[] {e0});
      }
    
      /** Returns an immutable array containing the given values, in order. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/ImmutableLongArray.java

      /** Returns the empty array. */
      public static ImmutableLongArray of() {
        return EMPTY;
      }
    
      /** Returns an immutable array containing a single value. */
      public static ImmutableLongArray of(long e0) {
        return new ImmutableLongArray(new long[] {e0});
      }
    
      /** Returns an immutable array containing the given values, in order. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Format field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithFormat(value string) *JSONSchemaPropsApplyConfiguration {
    	b.Format = &value
    	return b
    }
    
    // WithTitle sets the Title field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/console/NativePlatformConsoleDetectorTest.groovy

            }
        }
    
        def "returns null when neither stdout or stderr is attached to console"() {
            given:
            terminals.isTerminal(Terminals.Output.Stdout) >> false
            terminals.isTerminal(Terminals.Output.Stderr) >> false
    
            expect:
            detector.console == null
        }
    
        @Requires(UnitTestPreconditions.SmartTerminalAvailable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

     * <p>Specifies the options to use to fork a Java process.</p>
     */
    @HasInternalProtocol
    public interface JavaForkOptions extends ProcessForkOptions {
        /**
         * Returns the system properties which will be used for the process.
         *
         * @return The system properties. Returns an empty map when there are no system properties.
         */
        @Input
        Map<String, Object> getSystemProperties();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. src/sync/atomic/doc.go

    //
    //	old = *addr
    //	*addr = new
    //	return old
    //
    // The compare-and-swap operation, implemented by the CompareAndSwapT
    // functions, is the atomic equivalent of:
    //
    //	if *addr == old {
    //		*addr = new
    //		return true
    //	}
    //	return false
    //
    // The add operation, implemented by the AddT functions, is the atomic
    // equivalent of:
    //
    //	*addr += delta
    //	return *addr
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/cache/desired_state_of_world_test.go

    	}
    
    	// Check PluginExists returns true
    	if !dsw.PluginExists(socketPath) {
    		t.Fatalf("PluginExists returns false for the newly added plugin")
    	}
    }
    
    // Calls AddOrUpdatePlugin() to update timestamp of an existing plugin
    // Verifies the timestamp the existing plugin is updated
    // Verifies newly added plugin returns true for PluginExists()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top