Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 390 for determinant (0.23 sec)

  1. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

                  SmbTransportImpl transport = session.getTransport() ) {
                return transport.isSMB2();
            }
            catch ( SmbException e ) {
                log.debug("Failed to connect for determining SMB2 support", e);
                return false;
            }
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/collect/Queues.java

       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
       * @return the number of elements transferred
       * @throws InterruptedException if interrupted while waiting
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. tools/docker-builder/crane.go

    	"istio.io/istio/tools/docker-builder/dockerfile"
    )
    
    // RunCrane builds docker images using go-containerregistry, rather than relying on Docker. This
    // works by parsing each Dockerfile and determining the resulting image config (labels, entrypoint,
    // env vars, etc) as well as all files that should be copied in. Notably, RUN is not supported. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/cmd/go/scriptconds_test.go

    	_, err = os.ReadFile(flow)
    	switch {
    	case err == nil:
    		return false, nil
    	case os.IsNotExist(err):
    		return true, nil
    	default:
    		return false, fmt.Errorf("unexpected error reading file when determining case-sensitivity: %w", err)
    	}
    }
    
    func isTrimpath() (bool, error) {
    	info, _ := debug.ReadBuildInfo()
    	if info == nil {
    		return false, errors.New("missing build info")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/volume/util/atomic_writer.go

    		pathsToRemove, err = w.pathsToRemove(cleanPayload, oldTsPath)
    		if err != nil {
    			klog.Errorf("%s: error determining user-visible files to remove: %v", w.logContext, err)
    			return err
    		}
    
    		// (4)
    		if should, err := shouldWritePayload(cleanPayload, oldTsPath); err != nil {
    			klog.Errorf("%s: error determining whether payload should be written to disk: %v", w.logContext, err)
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. hack/ginkgo-e2e.sh

    # is not used.
    suite_args+=(--report-complete-ginkgo --report-complete-junit)
    
    # The following invocation is fairly complex. Let's dump it to simplify
    # determining what the final options are. Enabled by default in CI
    # environments like Prow.
    case "${GINKGO_SHOW_COMMAND:-${CI:-no}}" in y|yes|true) set -x ;; esac
    
    "${program[@]}" "${e2e_test}" -- \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/typeinst1.go

    }
    
    // Interface term lists can contain any type, incl. *Named types.
    // Verify that we use the underlying type(s) of the type(s) in the
    // term list when determining if an operation is permitted.
    
    type MyInt int
    func add1[T interface{MyInt}](x T) T {
    	return x + 1
    }
    
    type MyString string
    func double[T interface{MyInt|MyString}](x T) T {
    	return x + x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. src/html/template/doc.go

    	<a data-href="{{.}}"></a>
    
    At parse time this becomes
    
    	<a data-href="{{. | urlescaper | attrescaper}}"></a>
    
    If an attribute has both a namespace and a "data-" prefix, only the namespace
    will be removed when determining the context. For example
    
    	<a my:data-href="{{.}}"></a>
    
    This is handled as if "my:data-href" was just "data-href" and not "href" as
    it would be if the "data-" prefix were to be ignored too. Thus at parse
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. tensorflow/c/env.h

    TF_CAPI_EXPORT extern void TF_JoinThread(TF_Thread* thread);
    
    // \brief Load a dynamic library.
    //
    // Pass "library_filename" to a platform-specific mechanism for dynamically
    // loading a library. The rules for determining the exact location of the
    // library are platform-specific and are not documented here.
    //
    // On success, place OK in status and return the newly created library handle.
    // Otherwise returns nullptr and set error status.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Queues.java

       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
       * @return the number of elements transferred
       * @throws InterruptedException if interrupted while waiting
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top