Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,433 for returns_ (0.09 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

        /**
         * Returns the base directory for this cache.
         */
        @Override
        File getBaseDir();
    
        /**
         * Creates an indexed cache implementation that is contained within this cache. This method may be used at any time.
         *
         * <p>The returned cache may only be used by an action being run from {@link #useCache(java.util.function.Supplier)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/kubelet/util/util_windows.go

    	output, _, err := tickCount.Call()
    	if errno, ok := err.(syscall.Errno); !ok || errno != 0 {
    		return time.Time{}, err
    	}
    	return currentTime.Add(-time.Duration(output) * time.Millisecond).Truncate(time.Second), nil
    }
    
    // NormalizePath converts FS paths returned by certain go frameworks (like fsnotify)
    // to native Windows paths that can be passed to Windows specific code
    func NormalizePath(path string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/mime/type.go

    			s, _ := si.(string)
    			return s
    		}
    		if 'A' <= c && c <= 'Z' {
    			lower = append(lower, c+('a'-'A'))
    		} else {
    			lower = append(lower, c)
    		}
    	}
    	si, _ := mimeTypesLower.Load(string(lower))
    	s, _ := si.(string)
    	return s
    }
    
    // ExtensionsByType returns the extensions known to be associated with the MIME
    // type typ. The returned extensions will each begin with a leading dot, as in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/FileBackedOutputStream.java

      private static class MemoryOutput extends ByteArrayOutputStream {
        byte[] getBuffer() {
          return buf;
        }
    
        int getCount() {
          return count;
        }
      }
    
      /** Returns the file holding the data (possibly null). */
      @VisibleForTesting
      @CheckForNull
      synchronized File getFile() {
        return file;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. internal/kms/secret-key.go

    	keyID string
    	key   []byte
    }
    
    // Version returns the version of the builtin KMS.
    func (secretKey) Version(ctx context.Context) (string, error) { return "v1", nil }
    
    // APIs returns an error since the builtin KMS does not provide a list of APIs.
    func (secretKey) APIs(ctx context.Context) ([]madmin.KMSAPI, error) {
    	return nil, ErrNotSupported
    }
    
    // Status returns a set of endpoints and their KMS status. Since, the builtin KMS is not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

                this.root = root
                this.artifacts = artifacts*.artifact
            }
    
            /**
             * Returns a list of all artifacts that are direct transitive dependencies of the resolved dependency.
             *
             * <p>Only a subset of the graph is returned.</p>
             */
            List<String> getFirstLevelDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowProviders.java

     *
     * @since 8.1
     */
    @Incubating
    @ServiceScope(Scope.Build.class)
    public interface FlowProviders {
    
        /**
         * Returns a {@link Provider provider} for the summary result of the execution of the work scheduled
         * for the current build.
         * <p>
         * The returned {@link Provider#get() provider's value} becomes available after the scheduled work
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/positions.go

    		return list[l-1]
    	}
    	return nil
    }
    
    func lastStmt(list []Stmt) Stmt {
    	if l := len(list); l > 0 {
    		return list[l-1]
    	}
    	return nil
    }
    
    func lastField(list []*Field) *Field {
    	if l := len(list); l > 0 {
    		return list[l-1]
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/crypto/ecdh/nist.go

    		panic("crypto/ecdh: internal error: nistec ScalarBaseMult returned the identity")
    	}
    	return &PublicKey{
    		curve:     key.curve,
    		publicKey: publicKey,
    	}
    }
    
    // isZero returns whether a is all zeroes in constant time.
    func isZero(a []byte) bool {
    	var acc byte
    	for _, b := range a {
    		acc |= b
    	}
    	return acc == 0
    }
    
    // isLess returns whether a < b, where a and b are big-endian buffers of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/hash/fnv/fnv.go

    		s[1] = s1
    		s[0] = s0
    	}
    	return len(data), nil
    }
    
    func (s *sum32) Size() int   { return 4 }
    func (s *sum32a) Size() int  { return 4 }
    func (s *sum64) Size() int   { return 8 }
    func (s *sum64a) Size() int  { return 8 }
    func (s *sum128) Size() int  { return 16 }
    func (s *sum128a) Size() int { return 16 }
    
    func (s *sum32) BlockSize() int   { return 1 }
    func (s *sum32a) BlockSize() int  { return 1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top