Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for Returns (0.29 sec)

  1. pkg/proxy/endpoint.go

    	return info.isLocal
    }
    
    // IsReady returns true if an endpoint is ready and not terminating.
    func (info *BaseEndpointInfo) IsReady() bool {
    	return info.ready
    }
    
    // IsServing returns true if an endpoint is ready, regardless of if the
    // endpoint is terminating.
    func (info *BaseEndpointInfo) IsServing() bool {
    	return info.serving
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. test/fixedbugs/issue48558.go

    	_ = f2() // ERROR "assignment mismatch: 1 variable but f2 returns 2 values"
    	_ = f3() // ERROR "assignment mismatch: 1 variable but f3 returns 3 values"
    
    	_, _ = f1() // ERROR "assignment mismatch: 2 variables but f1 returns 1 value"
    	_, _ = f2()
    	_, _ = f3() // ERROR "assignment mismatch: 2 variables but f3 returns 3 values"
    
    	_, _, _ = f1() // ERROR "assignment mismatch: 3 variables but f1 returns 1 value"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

        File getFile();
    
        /**
         * Returns the charset use to encode the file containing the resource's content, as returned by {@link #getFile()}.
         *
         * @return The charset. Returns null when this resource is not available as a file.
         */
        @Nullable
        Charset getCharset();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/cidr.go

    // cidr('192.168.1.0/24').containsCIDR(cidr('192.168.2.0/24')) // returns false
    // cidr('192.168.0.0/16').containsCIDR('192.168.10.0/24') // returns true
    // cidr('192.168.1.0/24').containsCIDR('192.168.2.0/24') // returns false
    // cidr('192.168.0.1/24').ip() // returns ipAddr('192.168.0.1')
    // cidr('192.168.0.1/24').ip().family() // returns '4'
    // cidr('::1/128').ip() // returns ipAddr('::1')
    // cidr('::1/128').ip().family() // returns '6'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // FilePath("dir/file"). If a case-insensitive extension is not
      // found, returns a copy of the original FilePath.
      FilePath RemoveExtension(const char* extension) const;
    
      // Creates directories so that path exists. Returns true if successful or if
      // the directories already exist; returns false if unable to create
      // directories for any reason. Will also return false if the FilePath does
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    //	isQuantity('1.3G') // returns true
    //	isQuantity('1.3Gi') // returns true
    //	isQuantity('1,3G') // returns false
    //	isQuantity('10000k') // returns true
    //	isQuantity('200K') // returns false
    //	isQuantity('Three') // returns false
    //	isQuantity('Mi') // returns false
    //
    // Conversion to Scalars:
    //
    //   - isInteger: returns true if and only if asInteger is safe to call without an error
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/cluster.go

    	IsExternalControlPlane() bool
    
    	// Primary returns the primary cluster for this cluster. Will return itself if
    	// IsPrimary.
    	Primary() Cluster
    
    	// PrimaryName returns the name of the primary cluster for this cluster.
    	PrimaryName() string
    
    	// Config returns the config cluster for this cluster. Will return itself if
    	// IsConfig.
    	Config() Cluster
    
    	// ConfigName returns the name of the config cluster for this cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/Expression.java

         * When type is {@link IncludeType#IDENTIFIER} or {@link IncludeType#TOKEN}, then this returns the token.
         * When type anything else, returns null.
         */
        @Nullable
        String getValue();
    
        /**
         * Returns the actual arguments of this expression when type is {@link IncludeType#MACRO_FUNCTION}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //	url('/path').getHostname() // returns ''
    //	url('https://example.com:80/').getPort() // returns '80'
    //	url('https://example.com/').getPort() // returns ''
    //	url('/path').getPort() // returns ''
    //	url('https://example.com/path').getEscapedPath() // returns '/path'
    //	url('https://example.com/path with spaces/').getEscapedPath() // returns '/path%20with%20spaces/'
    //	url('https://example.com').getEscapedPath() // returns ''
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptSource.java

    @UsedByScanPlugin
    public interface ScriptSource extends Serializable {
        /**
         * Returns the name to use for the compiled class for this script. Never returns null.
         */
        String getClassName();
    
        /**
         * Returns the source for this script. Never returns null.
         */
        TextResource getResource();
    
        /**
         * Returns the file name that is inserted into the class during compilation.  For a script with a source
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 27 05:02:53 UTC 2020
    - 1.9K bytes
    - Viewed (0)
Back to top