Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 221 for gives (0.06 sec)

  1. src/cmd/go/go_test.go

    	t.Helper()
    	testenv.MustHaveGoBuild(t)
    	testenv.SkipIfShortAndSlow(t)
    
    	return &testgoData{t: t}
    }
    
    // must gives a fatal error if err is not nil.
    func (tg *testgoData) must(err error) {
    	tg.t.Helper()
    	if err != nil {
    		tg.t.Fatal(err)
    	}
    }
    
    // check gives a test non-fatal error if err is not nil.
    func (tg *testgoData) check(err error) {
    	tg.t.Helper()
    	if err != nil {
    		tg.t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	)
    
    	// The part of name before the "__" can be up to 205 characters (as with
    	// servicePortChainNameBase above). An IPv6 address can be up to 39 characters, and
    	// a port can be up to 5 digits, plus 3 punctuation characters gives a max total
    	// length of 252, well over chainNameBaseLengthMax (240), so truncation is
    	// theoretically possible (though incredibly unlikely).
    	return hashAndTruncate(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/reflect/type.go

    	// fields describe a function whose first argument is the receiver,
    	// and only exported methods are accessible.
    	//
    	// For an interface type, the returned Method's Type field gives the
    	// method signature, without a receiver, and the Func field is nil.
    	//
    	// Methods are sorted in lexicographic order.
    	Method(int) Method
    
    	// MethodByName returns the method with that name in the type's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    }
    
    // Returns a TF_CastOp to F32. This function is used for CastOps that are
    // intermediate nodes in a TableGen pattern result. In such a case, the
    // destination type is not inferred and must be given explicitly.
    //
    // Preconditions: The given value must have a ShapedType.
    static Value CreateTFCastOpF32(OpBuilder *builder, Location loc, Value x,
                                   BoolAttr truncate) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    //
    // For a given admission request, each binding will cause its policy to be
    // evaluated N times, where N is 1 for policies/bindings that don't use
    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    			prof.cyclesLost += cycles
    			return
    		} else {
    			prof.cyclesLost += prev
    		}
    	}
    	// Saving the *mutex as a uintptr is safe because:
    	//  - lockrank_on.go does this too, which gives it regular exercise
    	//  - the lock would only move if it's stack allocated, which means it
    	//      cannot experience multi-M contention
    	prof.pending = uintptr(unsafe.Pointer(l))
    	prof.cycles = cycles
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

       * given {@code Future}. If the given {@code Future} fails, the returned {@code Future} fails with
       * the same exception (and the function is not invoked).
       *
       * <p>More precisely, the returned {@code Future} takes its result from a {@code Future} produced
       * by applying the given {@code AsyncFunction} to the result of the original {@code Future}.
       * Example usage:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    //
    // For a given admission request, each binding will cause its policy to be
    // evaluated N times, where N is 1 for policies/bindings that don't use
    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    		}
    
    		// Cross-check the fast path against the big.Float implementation.
    		f2, acc2 := new(Float).SetInt(i).Float64()
    		if f != f2 || acc != acc2 {
    			t.Errorf("%s: got %f (%s); Float.Float64 gives %f (%s)", test.istr, f, acc, f2, acc2)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    link) or _build_ (compile, link and test) a component or binary and its _dependents_ (things that depend upon the component or binary). The native software model provides tasks that enable this capability. First, the _dependent components_ report gives insight about the relationships between each component. Second, the _build and assemble dependents_ tasks allow you to assemble or build a component and its dependents in one step.
    
    In the following example, the build file defines `OpenSSL`...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top