Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for returns_ (0.15 sec)

  1. tensorflow/cc/ops/while_loop.h

    // Function that takes cond graph inputs and returns cond graph boolean output.
    // 'output' need not be set if an error is returned.
    typedef std::function<Status(const Scope&, const std::vector<Output>& inputs,
                                 Output* output)>
        CondGraphBuilderFn;
    
    // Function that takes body graph inputs and returns body graph outputs.
    // 'outputs' need not be populated if an error is returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  2. src/os/user/lookup.go

    		return u, err
    	}
    	return lookupUserId(uid)
    }
    
    // LookupGroup looks up a group by name. If the group cannot be found, the
    // returned error is of type [UnknownGroupError].
    func LookupGroup(name string) (*Group, error) {
    	return lookupGroup(name)
    }
    
    // LookupGroupId looks up a group by groupid. If the group cannot be found, the
    // returned error is of type [UnknownGroupIdError].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/image/geom.go

    	return r.Min.String() + "-" + r.Max.String()
    }
    
    // Dx returns r's width.
    func (r Rectangle) Dx() int {
    	return r.Max.X - r.Min.X
    }
    
    // Dy returns r's height.
    func (r Rectangle) Dy() int {
    	return r.Max.Y - r.Min.Y
    }
    
    // Size returns r's width and height.
    func (r Rectangle) Size() Point {
    	return Point{
    		r.Max.X - r.Min.X,
    		r.Max.Y - r.Min.Y,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/UserCodeApplicationContext.java

        void gradleRuntime(Runnable runnable);
    
        /**
         * Returns an action that represents some deferred execution of the current user code. While the returned action is running, the details of the current application are restored.
         * Returns the given action when there is no current application.
         */
        <T> Action<T> reapplyCurrentLater(Action<T> action);
    
        /**
         * Returns details of the current application, if any.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/net/http/66008.md

    The new [ParseCookie] function parses a Cookie header value and
    returns all the cookies which were set in it. Since the same cookie
    name can appear multiple times the returned Values can contain
    more than one value for a given key.
    
    The new [ParseSetCookie] function parses a Set-Cookie header value and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 17:43:50 UTC 2024
    - 359 bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceRepository.java

    public interface ExternalResourceRepository {
        /**
         * Returns a copy of this repository with progress logging enabled.
         */
        ExternalResourceRepository withProgressLogging();
    
        /**
         * Returns the resource with the given name. Note that this method does not access the resource in any way, it simply creates an object that can. To access the resource, use the methods on the returned object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/lex.go

    func IsRegisterShift(r ScanToken) bool {
    	return ROT <= r && r <= LSH // Order looks backwards because these are negative.
    }
    
    func (t ScanToken) String() string {
    	switch t {
    	case scanner.EOF:
    		return "EOF"
    	case scanner.Ident:
    		return "identifier"
    	case scanner.Int:
    		return "integer constant"
    	case scanner.Float:
    		return "float constant"
    	case scanner.Char:
    		return "rune constant"
    	case scanner.String:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      fine("${queue.name} ${String.format("%-22s", message)}: ${task.name}")
    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
     * The returned string attempts to be column-aligned to 6 characters. For negative and large values
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/public/signature_def_function.h

    // the returned op. (i.e. don't call TFE_OpAddInput or TFE_OpAddInputList).
    // The caller is responsible for deleting the returned TFE_Op. If op
    // construction fails, `status` will be non-OK and the returned pointer will be
    // null.
    TF_CAPI_EXPORT extern TFE_Op* TF_SignatureDefFunctionMakeCallOp(
        TF_SignatureDefFunction* func, TFE_TensorHandle** inputs, int num_inputs,
        TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  10. src/os/stat.go

    package os
    
    import "internal/testlog"
    
    // Stat returns a [FileInfo] describing the named file.
    // If there is an error, it will be of type [*PathError].
    func Stat(name string) (FileInfo, error) {
    	testlog.Stat(name)
    	return statNolog(name)
    }
    
    // Lstat returns a [FileInfo] describing the named file.
    // If the file is a symbolic link, the returned FileInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
Back to top