Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for Tresults (0.28 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            public ExecutionResult waitForFinish() {
                ExecutionResult result = delegate.waitForFinish();
                results.add(result);
                return result;
            }
    
            @Override
            public ExecutionFailure waitForFailure() {
                ExecutionFailure failure = delegate.waitForFailure();
                results.add(failure);
                return failure;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // result, to the index of the same tensorlist in the arguments. For `If` op's
    // branch functions, the results and arguments are not usually matched 1-1. This
    // will let us konw which tensorlist result maps to which tensorlist in the
    // arguments. Once we know this info it will help us decide the types of the
    // result tensorlist based on the operand's of the `If` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        write->removeAttr(kDeviceAttr);
      }
    
      // As a part of lifting, we either reuse an existing slot for resource type
      // results or add a new slot. Resource type results should not have any uses
      // to begin with. So we can safely replace each old op result with the
      // corresponding new op result.
      int old_num_results = op_->getNumResults();
      op_->replaceAllUsesWith(new_op->getResults().take_front(old_num_results));
      op_->erase();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    	results, err := modload.QueryPackages(ctx, pattern, query, selected, r.checkAllowedOr(query, selected))
    	if len(results) > 0 {
    		pkgMods = make([]module.Version, 0, len(results))
    		for _, qr := range results {
    			pkgMods = append(pkgMods, qr.Mod)
    		}
    	}
    	return pkgMods, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    	params = p.parseParameters(scope, true)
    	results = p.parseResult(scope)
    
    	return
    }
    
    func (p *parser) parseFuncType() (*ast.FuncType, *ast.Scope) {
    	if p.trace {
    		defer un(trace(p, "FuncType"))
    	}
    
    	pos := p.expect(token.FUNC)
    	scope := ast.NewScope(p.topScope) // function scope
    	params, results := p.parseSignature(scope)
    
    	return &ast.FuncType{pos, params, results}, scope
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/bytes/bytes_test.go

    		a := SplitN([]byte(tt.s), []byte(tt.sep), tt.n)
    
    		// Appending to the results should not change future results.
    		var x []byte
    		for _, v := range a {
    			x = append(v, 'z')
    		}
    
    		result := sliceOfString(a)
    		if !eq(result, tt.a) {
    			t.Errorf(`Split(%q, %q, %d) = %v; want %v`, tt.s, tt.sep, tt.n, result, tt.a)
    			continue
    		}
    		if tt.n == 0 || len(a) == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // `src_names` are owned by and have the lifetime of `results`.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefResultsMissingUnusedInputMappings(
        TF_ImportGraphDefResults* results, int* num_missing_unused_input_mappings,
        const char*** src_names, int** src_indexes);
    
    // Deletes a results object returned by TF_GraphImportGraphDefWithResults().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    						if osIsNotExist(verr) {
    							resp.Results[i] = checkPartVolumeNotFound
    						}
    						continue
    					}
    				}
    			}
    			if osErrToFileErr(err) == errFileNotFound {
    				resp.Results[i] = checkPartFileNotFound
    			}
    			continue
    		}
    		if st.Mode().IsDir() {
    			resp.Results[i] = checkPartFileNotFound
    			continue
    		}
    		// Check if shard is truncated.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	// field results in a configuration error.
    	//
    	// - If `paramKind` is namespace-scoped, the namespace of the object being
    	// evaluated for admission will be used when this field is left unset. Take
    	// care that if this is left empty the binding must not match any cluster-scoped
    	// resources, which will result in an error.
    	//
    	// +optional
    	Namespace string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-remove-unused-while-results`
    
    _Removes unused results from tf.WhileRegion ops_
    
    Removes unused results from `tf.WhileRegion` ops along with the defining
    ops in the body, if it is safe to do so.
    Currently, the pass detects results with following properties:
    - the result is unused outside of the `tf.WhileRegion` op
    - the defining op of the result in the body can be safely removed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top