Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for Guess (0.03 sec)

  1. src/runtime/testdata/testprogcgo/stackswitch.c

    	// bounds. needm should refresh the stack bounds anyway since this is a
    	// new thread.
    
    	// N.B. since we used a custom stack with makecontext,
    	// callbackUpdateSystemStack had to guess the bounds. Its guess assumes
    	// a 32KiB stack.
    	char *prev_stack_lo = stack2 + STACK_SIZE - (32*1024);
    
    	// New SP is just barely in bounds, but if we don't update the bounds
    	// we'll almost certainly overflow. The SP that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/LongMath.java

            checkRoundingUnnecessary(guessSquared == x);
            return guess;
          case FLOOR:
          case DOWN:
            if (x < guessSquared) {
              return guess - 1;
            }
            return guess;
          case CEILING:
          case UP:
            if (x > guessSquared) {
              return guess + 1;
            }
            return guess;
          case HALF_DOWN:
          case HALF_UP:
          case HALF_EVEN:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/LongMath.java

            checkRoundingUnnecessary(guessSquared == x);
            return guess;
          case FLOOR:
          case DOWN:
            if (x < guessSquared) {
              return guess - 1;
            }
            return guess;
          case CEILING:
          case UP:
            if (x > guessSquared) {
              return guess + 1;
            }
            return guess;
          case HALF_DOWN:
          case HALF_UP:
          case HALF_EVEN:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/common/utils.cc

      return true;
    }
    
    bool IsTerminatorOp(Operation* op) {
      if (!op) return false;
      return op->hasTrait<OpTrait::IsTerminator>();
    }
    
    // Try to guess the inference type of the op.
    InferenceType GetInferenceType(Operation* op) {
      bool float_type_observed = false;
      bool int8_type_observed = false;
      bool uint8_type_observed = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 05:37:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/fileTrees/groovy/build.gradle

    // tag::archive-trees[]
    // Create a ZIP file tree using path
    FileTree zip = zipTree('someFile.zip')
    
    // Create a TAR file tree using path
    FileTree tar = tarTree('someFile.tar')
    
    //tar tree attempts to guess the compression based on the file extension
    //however if you must specify the compression explicitly you can:
    FileTree someTar = tarTree(resources.gzip('someTar.ext'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/UniAddress.java

         */
        @Override
        public boolean equals ( Object obj ) {
            return obj instanceof UniAddress && this.addr.equals( ( (UniAddress) obj ).addr);
        }
    
    
        /**
         * Guess first called name to try for session establishment. This
         * method is used exclusively by the <tt>jcifs.smb</tt> package.
         * 
         * @return the guessed name
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/common/utils.h

      return quantized_type != nullptr &&
             quantized_type.getStorageTypeIntegralWidth() == 32 &&
             quantized_type.isSigned();
    }
    
    // Try to guess the inference type of the op.
    InferenceType GetInferenceType(Operation* op);
    
    }  // namespace tac
    }  // namespace TFL
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/internal/goroot/gc.go

    		return false
    	}
    
    	if path == "unsafe" {
    		// Special case.
    		return true
    	}
    
    	gd.once.Do(gd.init)
    	if gd.dirs == nil {
    		// We couldn't find the gccgo search directories.
    		// Best guess, since the first component did not contain
    		// '.', is that this is a standard library package.
    		return true
    	}
    
    	for _, dir := range gd.dirs {
    		full := filepath.Join(dir, path) + ".gox"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/crd_finder.go

    		if err != nil {
    			return nil, fmt.Errorf("failed to list CRDs: %v", err)
    		}
    		if list == nil {
    			return nil, nil
    		}
    
    		gks := []schema.GroupKind{}
    
    		// We need to parse the list to get the gvk, I guess that's fine.
    		for _, crd := range (*list).Items {
    			// Look for group, version, and kind
    			group, _, _ := unstructured.NestedString(crd.Object, "spec", "group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 14:05:43 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // packet size to a virtual time, in our version this corresponds to
    // adding a service time (i.e., duration) to virtual time.
    //
    // The third difference is handled by modifying the algorithm to
    // dispatch based on an initial guess at the request’s service time
    // (duration) and then make the corresponding adjustments once the
    // request’s actual service time is known. This is similar, although
    // not exactly isomorphic, to the original paper’s adjustment by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top