Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for tracking (0.29 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

         TFL_AF_None),
        $x,
        TFL_AF_None),
      (TFL_HardSwishOp $x)>;
    
    // Matching HardSwish with extra FakeQuant. These FakeQuant ops were due to
    // incorrect placement in the quantization aware training.
    def MatchHardSwishQuantized : Pat<
      (TFL_MulOp (TFL_DequantizeOp (TFL_QuantizeOp
        (TFL_MulOp
         $x, (TFL_DequantizeOp (TFL_QuantizeOp (TFL_AddOp
              $x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		},
    		"unknown resource type": {
    			args:  []string{"unknown/foo"},
    			errFn: expectErr,
    		},
    		"leading slash": {
    			args:  []string{"/bar"},
    			errFn: expectErr,
    		},
    		"trailing slash": {
    			args:  []string{"bar/"},
    			errFn: expectErr,
    		},
    		"valid status subresource": {
    			args:        []string{"pods/foo"},
    			subresource: "status",
    			errFn:       expectNoErr,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			ret = &MethodWithQualifiers{Method: ret, Qualifiers: q, RefQualifier: ""}
    		} else if mwq, ok := ret.(*MethodWithQualifiers); ok {
    			// Merge adjacent qualifiers.  This case
    			// happens with a function with a trailing
    			// ref-qualifier.
    			mwq.Qualifiers = mergeQualifiers(q, mwq.Qualifiers)
    		} else {
    			// Merge adjacent qualifiers.  This case
    			// happens with multi-dimensional array types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    			}
    			newCtx.G = gid
    			break
    		}
    		// Now we're talking about a thread and goroutine that have been
    		// blocked on a syscall for the entire generation. This case must
    		// not have a P; the runtime makes sure that all Ps are traced at
    		// the beginning of a generation, which involves taking a P back
    		// from every thread.
    		ms, ok := o.mStates[mid]
    		if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    	if n > 0 {
    		sl += int32(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    func (rsa *RawSockaddrAny) Sockaddr() (Sockaddr, error) {
    	switch rsa.Addr.Family {
    	case AF_UNIX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          }
        }
      }
    
      @Test
      fun parseTrimsAsciiWhitespace() {
        val expected = parse("http://host/")
        // Leading.
        assertThat(parse("http://host/\u000c\n\t \r")).isEqualTo(expected)
        // Trailing.
        assertThat(parse("\r\n\u000c \thttp://host/")).isEqualTo(expected)
        // Both.
        assertThat(parse(" http://host/ ")).isEqualTo(expected)
        // Both.
        assertThat(parse("    http://host/    ")).isEqualTo(expected)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Sqrt32 ...) => (SQRTF ...)
    (Abs ...) => (ABSD ...)
    
    // TODO: optimize this for ARMv5 and ARMv6
    (Ctz32NonZero ...) => (Ctz32 ...)
    (Ctz16NonZero ...) => (Ctz32 ...)
    (Ctz8NonZero ...) => (Ctz32 ...)
    
    // count trailing zero for ARMv5 and ARMv6
    // 32 - CLZ(x&-x - 1)
    (Ctz32 <t> x) && buildcfg.GOARM.Version<=6 =>
    	(RSBconst [32] (CLZ <t> (SUBconst <t> (AND <t> x (RSBconst <t> [0] x)) [1])))
    (Ctz16 <t> x) && buildcfg.GOARM.Version<=6 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    	c.triggered = ^uint64(0)
    	c.setGCPercent(gcPercent)
    	c.setMemoryLimit(memoryLimit)
    	c.commit(true) // No sweep phase in the first GC cycle.
    	// N.B. Don't bother calling traceHeapGoal. Tracing is never enabled at
    	// initialization time.
    	// N.B. No need to call revise; there's no GC enabled during
    	// initialization.
    }
    
    // startCycle resets the GC controller's state and computes estimates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    }
    
    // A nice example: walk a binary tree.
    
    type Tree struct {
    	Val         int
    	Left, Right *Tree
    }
    
    // Use different delimiters to test Set.Delims.
    // Also test the trimming of leading and trailing spaces.
    const treeTemplate = `
    	(- define "tree" -)
    	[
    		(- .Val -)
    		(- with .Left -)
    			(template "tree" . -)
    		(- end -)
    		(- with .Right -)
    			(- template "tree" . -)
    		(- end -)
    	]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// SingularQualifiedResource is the singular name of the resource.
    	SingularQualifiedResource schema.GroupResource
    
    	// KeyRootFunc returns the root etcd key for this resource; should not
    	// include trailing "/".  This is used for operations that work on the
    	// entire collection (listing and watching).
    	//
    	// KeyRootFunc and KeyFunc must be supplied together or not at all.
    	KeyRootFunc func(ctx context.Context) string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top