Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for Returns (0.33 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. 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)
  7. 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)
  8. 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)
  9. pkg/volume/util/hostutil/hostutil_unsupported.go

    	return errUnsupported
    }
    
    // MakeDir always returns an error on unsupported platforms
    func (hu *HostUtil) MakeDir(pathname string) error {
    	return errUnsupported
    }
    
    // PathExists always returns an error on unsupported platforms
    func (hu *HostUtil) PathExists(pathname string) (bool, error) {
    	return true, errUnsupported
    }
    
    // EvalHostSymlinks always returns an error on unsupported platforms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/3-iter.md

      but uses a stable sort algorithm.
    - [Chunk](/pkg/slices#Chunk) returns an iterator over consecutive
      sub-slices of up to n elements of a slice.
    
    The [maps] package adds several functions that work with iterators:
    - [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
    - [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
    - [Values](/pkg/maps#Values) returns an iterator over values in m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top