Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 228 for Advance (0.13 sec)

  1. src/cmd/vendor/rsc.io/markdown/inline.go

    		}
    	}
    	b.scanned = true
    
    NoMatch:
    	// No match, so none of these backticks count: skip them all.
    	// For example ``x` is not a single backtick followed by a code span.
    	// Returning nil, 0, false would advance to the second backtick and try again.
    	return &Plain{s[i : i+n]}, start, i + n, true
    }
    
    func parseAutoLinkOrHTML(p *parseState, s string, i int) (Inline, int, int, bool) {
    	if x, end, ok := parseAutoLinkURI(s, i); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/internal/abi/type.go

    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    // and therefore point incorrectly at the next block in memory.
    func addChecked(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
    	return unsafe.Pointer(uintptr(p) + x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. src/runtime/traceback_test.go

    	// Test printing exactly the maximum number of frames to make sure we don't
    	// print any "elided" message, eliding exactly 1 so we have to pick back up
    	// in the paused physical frame, and eliding 10 so we have to advance the
    	// physical frame forward.
    	for _, elided := range []int{0, 1, 10} {
    		t.Run(fmt.Sprintf("elided=%d", elided), func(t *testing.T) {
    			n := elided + runtime.TracebackInnerFrames + runtime.TracebackOuterFrames
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. src/archive/tar/reader.go

    		sparseMap = sparseMap[2:]
    	}
    	return spd, nil
    }
    
    // Read reads from the current file in the tar archive.
    // It returns (0, io.EOF) when it reaches the end of that file,
    // until [Next] is called to advance to the next file.
    //
    // If the current file is sparse, then the regions marked as a hole
    // are read back as NUL-bytes.
    //
    // Calling Read on special types like [TypeLink], [TypeSymlink], [TypeChar],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_de.properties

    labels.tooltip_search_view=Search View
    labels.tooltip_run_crawler=Crawler starten
    labels.tooltip_forum=Forum
    labels.tooltip_onlinehelp=Hilfe
    labels.tooltip_logout=Abmelden
    labels.advance=Weiter
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All diese Wörter
    labels.advance_search_phrase_query=Exakt dieses Wort oder dieser Satz
    labels.advance_search_should_queries=Eines dieser Wörter
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	// The three delimiters ('.', '[', ']') will be returned as single char tokens.
    	// All other text between delimiters is returned as string tokens.
    	scanner.Split(func(data []byte, atEOF bool) (advance int, token []byte, err error) {
    		if len(data) > 0 {
    			for i := 0; i < len(data); i++ {
    				// If in a single quoted string, look for the end of string
    				// ignoring delimiters.
    				if data[0] == '\'' {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                   << "embedding op has unknown " << kEmbeddingPipelining
                   << " attribute value " << region << ".";
          }
          op->removeAttr(kEmbeddingPipelining);
        }
        return WalkResult::advance();
      });
      if (walk_result.wasInterrupted()) return signalPassFailure();
    
      // If there are no forward pass ops, there is no SC, so we end early.
      if (forward_pass_ops.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.tooltip_search_view	=	Affichage de la recherche
    labels.tooltip_run_crawler	=	Exécuter le robot
    labels.tooltip_forum	=	Forum
    labels.tooltip_onlinehelp	=	Aider
    labels.tooltip_logout	=	Se déconnecter
    labels.advance	=	Avance
    labels.advance_search_title	=	Recherche Avancée
    labels.advance_search_must_queries	=	Tous ces mots
    labels.advance_search_phrase_query	=	Recherche d'expression de ces mots
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	// Skip past comments and empty lines seeking a real header.
    	for s.Scan() && isSpaceOrComment(s.Text()) {
    	}
    
    	line := s.Text()
    	if m := threadzStartRE.FindStringSubmatch(line); m != nil {
    		// Advance over initial comments until first stack trace.
    		for s.Scan() {
    			if line = s.Text(); isMemoryMapSentinel(line) || strings.HasPrefix(line, "-") {
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

            float_op->setAttr(kDebugModeOpFloatAttrName, rewriter.getUnitAttr());
            RewireFloatModelBackbone(quantizing_op, float_op);
            return success();
          }
    
          // Blocklist op is checked in advance for non-dynamic range quantization
          // case.
          if (!quant_params_.quant_spec.weight_quantization &&
              (ops_blocklist.find(quantizing_op->getName().getStringRef().str()) !=
               ops_blocklist.end())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top