Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for Inline1 (0.23 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

                checkEntryNotNull(key, value);
                keys[i] = key;
                values[i] = value;
              }
            } else {
              // Need to sort and check for nulls and dupes.
              // Inline the Comparator implementation rather than transforming with a Function
              // to save code size.
              Arrays.sort(
                  entryArray,
                  0,
                  size,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

      for (Predicate* op : operands) {
        // Simplify A&A => A and  A|A => A.
        if (!simplified_ops_set.insert(op).second) {
          continue;
        }
    
        if (op->kind() == pred_kind) {
          // "Inline" the operands of an inner And/Or into the parent And/Or.
          for (Predicate* subop : op->GetOperands()) {
            if (simplified_ops_set.insert(subop).second) {
              simplified_ops.push_back(subop);
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
          return new Cancellation(false, cancellation);
        } catch (Exception | Error t) { // sneaky checked exception
          return new Failure(t);
        }
      }
    
      /**
       * An inlined private copy of {@link Uninterruptibles#getUninterruptibly} used to break an
       * internal dependency on other /util/concurrent classes.
       */
      @ParametricNullness
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
          return new Cancellation(false, cancellation);
        } catch (Exception | Error t) { // sneaky checked exception
          return new Failure(t);
        }
      }
    
      /**
       * An inlined private copy of {@link Uninterruptibles#getUninterruptibly} used to break an
       * internal dependency on other /util/concurrent classes.
       */
      @ParametricNullness
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. cmd/kubelet/app/server.go

    	}
    	allCPUSet := topo.CPUDetails.CPUs()
    	if !reservedCPUSet.IsSubsetOf(allCPUSet) {
    		return emptyCPUSet, fmt.Errorf("reserved-cpus: %s is not a subset of online-cpus: %s", cpus, allCPUSet.String())
    	}
    	return reservedCPUSet, nil
    }
    
    func run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Dependencies, featureGate featuregate.FeatureGate) (err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    	testenv.SkipIfOptimizationOff(t)
    	for _, n := range []int64{0, 7, -7, 1 << 30, -1 << 30, 1 << 50, -1 << 50} {
    		x := NewInt(3)
    		got := testing.AllocsPerRun(100, func() {
    			// NewInt should inline, and all its allocations
    			// can happen on the stack. Passing the result of NewInt
    			// to Add should not cause any of those allocations to escape.
    			x.Add(x, NewInt(n))
    		})
    		if got != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final UpdateByQueryRequest request = new UpdateByQueryRequest(index).setQuery(QueryBuilders.idsQuery().addIds(id))
                    .setScript(new Script(ScriptType.INLINE, "painless",
                            "ctx._source[params.f]=params.v;" + ComponentUtil.getLanguageHelper().getReindexScriptSource(),
                            Map.of("f", field, "v", value)));
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///
    /// The argument is guaranteed to not be `nullptr`.
    ///
    /// We want this to be defined in the plugin's memory space and we guarantee
    /// that core TensorFlow will never call this.
    static inline void TF_SetFilesystemVersionMetadata(
        TF_FilesystemPluginOps* ops) {
      ops->filesystem_ops_abi = TF_FILESYSTEM_OPS_ABI;
      ops->filesystem_ops_api = TF_FILESYSTEM_OPS_API;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"":           "TypeMeta describes an individual object in an API response or request with strings representing the type of the object and its API schema version. Structures that are versioned or persisted should inline TypeMeta.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    			// to avoid triggering a cross-compile of the runtime.
    			if string(env) != self && !strings.HasPrefix(string(env), self+"/") && !*allCodegen {
    				continue
    			}
    			// -S=2 forces outermost line numbers when disassembling inlined code.
    			cmdline := []string{"build", "-gcflags", "-S=2"}
    
    			// Append flags, but don't override -gcflags=-S=2; add to it instead.
    			for i := 0; i < len(flags); i++ {
    				flag := flags[i]
    				switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top