Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for Scans (0.13 sec)

  1. pkg/controller/job/indexed_job_utils.go

    	for _, p := range pods {
    		ix := getCompletionIndex(p.Annotations)
    		if ix != unknownCompletionIndex {
    			result.Insert(ix)
    		}
    	}
    	return result
    }
    
    // appendDuplicatedIndexPodsForRemoval scans active `pods` for duplicated
    // completion indexes. For each index, it selects n-1 pods for removal, where n
    // is the number of repetitions. The pods to be removed are appended to `rm`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    }
    
    //go:generate go run mkpreempt.go
    
    // asyncPreempt saves all user registers and calls asyncPreempt2.
    //
    // When stack scanning encounters an asyncPreempt frame, it scans that
    // frame and its parent frame conservatively.
    //
    // asyncPreempt is implemented in assembly.
    func asyncPreempt()
    
    //go:nosplit
    func asyncPreempt2() {
    	gp := getg()
    	gp.asyncSafePoint = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

                filter_quantized_type.getStorageTypeMin(),
                filter_quantized_type.getStorageTypeMax()),
            /*override=*/true);
      }
      return changed;
    }
    
    // This method scans the operations in the function to setup the initial
    // states for quantization parameter propagation.
    // TODO: b/323478683 - This algorithm assumes there are only one pair of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/regexp/regexp.go

    	canCheckPrefix() bool             // can we look ahead without losing info?
    	hasPrefix(re *Regexp) bool
    	index(re *Regexp, pos int) int
    	context(pos int) lazyFlag
    }
    
    // inputString scans a string.
    type inputString struct {
    	str string
    }
    
    func (i *inputString) step(pos int) (rune, int) {
    	if pos < len(i.str) {
    		c := i.str[pos]
    		if c < utf8.RuneSelf {
    			return rune(c), 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    	}
    	scan.toLower(scan.start, len(scan.b))
    	t.pVariant = byte(end)
    	end = parseVariants(scan, end, t)
    	t.pExt = uint16(end)
    	return t, end
    }
    
    var separator = []byte{'-'}
    
    // parseVariants scans tokens as long as each token is a valid variant string.
    // Duplicate variants are removed.
    func parseVariants(scan *scanner, end int, t Tag) int {
    	start := scan.start
    	varIDBuf := [4]uint8{}
    	variantBuf := [4][]byte{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/mime/multipart/multipart.go

    	}
    	n := len(d)
    	if n > p.n {
    		n = p.n
    	}
    	n, _ = br.Read(d[:n])
    	p.total += int64(n)
    	p.n -= n
    	if p.n == 0 {
    		return n, p.err
    	}
    	return n, nil
    }
    
    // scanUntilBoundary scans buf to identify how much of it can be safely
    // returned as part of the Part body.
    // dashBoundary is "--boundary".
    // nlDashBoundary is "\r\n--boundary" or "\n--boundary", depending on what mode we are in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/mgcwork.go

    //
    // Write barriers, root discovery, stack scanning, and object scanning
    // produce pointers to grey objects. Scanning consumes pointers to
    // grey objects, thus blackening them, and then scans them,
    // potentially producing new pointers to grey objects.
    
    // A gcWork provides the interface to produce and consume work for the
    // garbage collector.
    //
    // A gcWork can be used on the stack as follows:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/runtime/type.go

    	copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.Data(off)))[:])
    	pkgPathName := resolveNameOff(unsafe.Pointer(n.Bytes), nameOff)
    	return pkgPathName.Name()
    }
    
    // typelinksinit scans the types from extra modules and builds the
    // moduledata typemap used to de-duplicate type pointers.
    func typelinksinit() {
    	if firstmoduledata.next == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top