Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 155 for Tresults (0.17 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                      model_ptr));
    
        // Add the results to the value maps. There are two cases: 1. the result
        // tensor does not have min/max values, the original op result is used
        // directly; 2. the result tensor has some min/max values, a stats op is
        // created, then the result of the stats op is used.
        for (const auto& pair : llvm::enumerate(MaybeWrapInControlNode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. src/go/build/build.go

    // options would be relative to that directory. In 1.9 we changed to
    // running the compiler in the build directory, to get consistent
    // build results (issue #19964). To keep builds working, we change any
    // relative -I or -L options to be absolute.
    //
    // Using filepath.IsAbs and filepath.Join here means the results will be
    // different on different systems, but that's OK: -I and -L options are
    // inherently system-dependent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

        @Override
        public NavigableSet<E> descendingSet() {
          UnmodifiableNavigableSet<E> result = descendingSet;
          if (result == null) {
            result = descendingSet = new UnmodifiableNavigableSet<>(delegate.descendingSet());
            result.descendingSet = this;
          }
          return result;
        }
    
        @Override
        public Iterator<E> descendingIterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    }
    
    func (j *BatchJobPool) resume() {
    	results := make(chan itemOrErr[ObjectInfo], 100)
    	ctx, cancel := context.WithCancel(j.ctx)
    	defer cancel()
    	if err := j.objLayer.Walk(ctx, minioMetaBucket, batchJobPrefix, results, WalkOptions{}); err != nil {
    		batchLogIf(j.ctx, err)
    		return
    	}
    	for result := range results {
    		if result.Err != nil {
    			batchLogIf(j.ctx, result.Err)
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	}
    	var results []jsonResult
    	for _, p := range plats {
    		fields := strings.Split(p, "/")
    		results = append(results, jsonResult{
    			GOOS:         fields[0],
    			GOARCH:       fields[1],
    			CgoSupported: cgoEnabled[p],
    			FirstClass:   firstClass[p],
    			Broken:       broken[p],
    		})
    	}
    	out, err := json.MarshalIndent(results, "", "\t")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// same initial query to retrieve the next set of results. Setting a limit may return fewer than
    	// the requested amount of items (up to zero items) in the event all requested objects are
    	// filtered out and clients should only use the presence of the continue field to determine whether
    	// more results are available. Servers may choose not to support the limit argument and will return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    						continue
    					}
    					if acc != Exact {
    						t.Errorf("%g/%g got %s result; want exact result", a, b, acc)
    					}
    				}
    			}
    		}
    	}
    }
    
    // TestFloatArithmeticSpecialValues tests that Float operations produce the
    // correct results for combinations of zero (±0), finite (±1 and ±2.71828),
    // and infinite (±Inf) operands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Running CUnit tests
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// return the list of pods ordered by their creation time.
    	sort.SliceStable(result, func(i, j int) bool {
    		return result[i].CreatedAt > result[j].CreatedAt
    	})
    	klog.V(4).InfoS("Retrieved pods from runtime", "all", all)
    	return result, nil
    }
    
    // containerKillReason explains what killed a given container
    type containerKillReason string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    === Using dependency resolution results
    
    Dependency resolution results can be consumed as task inputs in two ways.
    First by consuming the graph of the resolved metadata using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedComponentResult.html[ResolvedComponentResult].
    Second by consuming the flat set of the resolved artifacts using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedArtifactResult.html[ResolvedArtifactResult].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top