Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for sing (0.12 sec)

  1. src/main/webapp/css/admin/font-awesome.min.css

    efore{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

      return scope.status();
    }
    REGISTER_GRADIENT_OP("Sin", SinGrad);
    
    Status CosGrad(const Scope& scope, const Operation& op,
                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      // y = cos(x)
      // dy/dx = -sin(x)
      auto dydx = Neg(scope, Sin(scope, op.input(0)));
      // grad(x) = grad(y) * conj(dy/dx)
      grad_outputs->push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    		"healthz":                         {url: "/healthz/", bucket: "healthz"},
    		"healthz log sub":                 {url: "/healthz/log", bucket: "healthz"},
    		"healthz ping":                    {url: "/healthz/ping", bucket: "healthz"},
    		"healthz sync loop":               {url: "/healthz/syncloop", bucket: "healthz"},
    		"logs":                            {url: "/logs/", bucket: "logs"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_s390x.s

    #undef X0
    #undef X1
    #undef T0
    #undef T1
    #undef P0
    #undef P1
    
    // Point add with P2 being affine point
    // If sign == 1 -> P2 = -P2
    // If sel == 0 -> P3 = P1
    // if zero == 0 -> P3 = P2
    // func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
    #define P3ptr   R1
    #define P1ptr   R2
    #define P2ptr   R3
    #define CPOOL   R4
    
    // Temporaries in REGs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        set("k1", "a", "a")
    
        // Create an editor, then detach it.
        val editor = cache.edit("k1")!!
        editor.newSink(0).buffer().use { sink ->
          cache.evictAll()
    
          // Complete the original edit. It goes into a black hole.
          sink.writeUtf8("bb")
        }
        assertThat(cache["k1"]).isNull()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = inc + ind
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// is rewritten to:
    		//
    		//	loop:
    		//		ind = (Phi end nxt)
    		//		if (Const [x]) < ind
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = ind - inc
    		//		goto loop
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

          <verify-signatures>false</verify-signatures>
        </configuration>
    </verification-metadata>
    ----
    
    Doing so, Gradle will verify all artifacts using <<#sec:checksum-verification,checksums>>, but will not verify <<#sec:signature-verification,signatures>>.
    Gradle will verify any artifact downloaded using its dependency management engine, which includes, but is not limited to:
    
    - artifact files (e.g jar files, zips, ...) used during a build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    func testTransportBodyReadError(t *testing.T, mode testMode) {
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		if r.URL.Path == "/ping" {
    			return
    		}
    		buf := make([]byte, 1)
    		n, err := r.Body.Read(buf)
    		w.Header().Set("X-Body-Read", fmt.Sprintf("%v, %v", n, err))
    	})).ts
    	c := ts.Client()
    	tr := c.Transport.(*Transport)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers.go

    	nodeConditionMessageFmt = "The node had condition: %v. "
    	// containerMessageFmt provides additional information for containers exceeding requests
    	containerMessageFmt = "Container %s was using %s, request is %s, has larger consumption of %v. "
    	// containerEphemeralStorageMessageFmt provides additional information for containers which have exceeded their ES limit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top