Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 119 for relu (0.27 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

       * defer that to Range, since it's ContiguousSet.create() that's used to create the sets. However,
       * that gets messy here, and we already have null tests for Range.
       */
    
      /*
       * These generators also rely on consecutive integer inputs (not necessarily in order, but no
       * holes).
       */
    
      // SetCreationTester has some tests that pass in duplicates. Dedup them.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/runtime/os_plan9.go

    //go:nosplit
    func exit(e int32) {
    	var status []byte
    	if e == 0 {
    		status = emptystatus
    	} else {
    		// build error string
    		var tmp [32]byte
    		sl := itoa(tmp[:len(tmp)-1], uint64(e))
    		// Don't append, rely on the existing data being zero.
    		status = sl[:len(sl)+1]
    	}
    	goexitsall(&status[0])
    	exits(&status[0])
    }
    
    // May run with m.p==nil, so write barriers are not allowed.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string
    	// Canonicalize allows an object to be mutated into a canonical form. This
    	// ensures that code that operates on these objects can rely on the common
    	// form for things like comparison.  Canonicalize is invoked after
    	// validation has succeeded but before the object has been persisted.
    	// This method may mutate the object.
    	Canonicalize(obj runtime.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. src/math/big/arith_ppc64x.s

    	CMP   R11, $0		// If z_len is zero, return
    	BEQ   done
    
    	// We will process the first iteration out of the loop so we capture
    	// the value of c. In the subsequent iterations, we will rely on the
    	// value of CA set here.
    	MOVD  0(R8), R20	// R20 = x[i]
    	ADD   $-1, R11		// R11 = z_len - 1
    	ADDC  R20, R4, R6	// R6 = x[i] + c
    	CMP   R11, $0		// If z_len was 1, we are done
    	MOVD  R6, 0(R10)	// z[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

       * defer that to Range, since it's ContiguousSet.create() that's used to create the sets. However,
       * that gets messy here, and we already have null tests for Range.
       */
    
      /*
       * These generators also rely on consecutive integer inputs (not necessarily in order, but no
       * holes).
       */
    
      // SetCreationTester has some tests that pass in duplicates. Dedup them.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    }
    
    // parallelSubtest returns statements that can be easily proven to execute
    // concurrently via the go test runner, as t.Run has been invoked with a
    // function literal that calls t.Parallel.
    //
    // In practice, users rely on the fact that statements before the call to
    // t.Parallel are synchronous. For example by declaring test := test inside the
    // function literal, but before the call to t.Parallel.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

                                                   /*replica_id=*/i, devices)))
          return failure();
    
        // In new graph export pipeline, we will update control dependencies in the
        // end of the pipeline. Mostly, it will rely on side effect analysis by
        // considering accessing resource only. However, for branches under parallel
        // group, there should not be any control deps between them even side effect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/preemption/preemption_test.go

    				frameworkruntime.WithSnapshotSharedLister(snapshot),
    				frameworkruntime.WithLogger(logger),
    			)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			state := framework.NewCycleState()
    			// Some tests rely on PreFilter plugin to compute its CycleState.
    			if _, status := fwk.RunPreFilterPlugins(ctx, state, tt.pod); !status.IsSuccess() {
    				t.Errorf("Unexpected PreFilter Status: %v", status)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    			ConfigurationError: configurationError,
    		})
    
    		// Should queue a re-sync for policy sync error. If our shared param
    		// informer can notify us when CRD discovery changes we can remove this
    		// and just rely on the informer to notify us when the CRDs change
    		if configurationError != nil {
    			errs = append(errs, configurationError)
    		}
    	}
    
    	// Clean up orphaned policies by replacing the old cache of compiled policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/prog.go

    		//
    		// TODO(bradfitz,bcmills): figure out the proper error type here. Maybe
    		// errors.ErrUnsupported? Is entryNotFoundError even appropriate? There
    		// might be places where we rely on the fact that a recent Put can be
    		// read through a corresponding Get. Audit callers and check, and document
    		// error types on the Cache interface.
    		return Entry{}, &entryNotFoundError{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top