Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 252 for beginning (0.16 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

            withValidityAssertion { analysisSession.typeProvider.haveCommonSubtype(this, that) }
    
        /**
         * Gets all the implicit receiver types available at the given position. The type of the outermost receiver appears at the beginning
         * of the returned list.
         */
        public fun getImplicitReceiverTypesAtPosition(position: KtElement): List<KaType> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    		fmt.Fprintf(w, "[dryrun] Attached patch:\n\t%s\n", strings.Replace(string(patchAction.GetPatch()), `\"`, `"`, -1))
    	}
    }
    
    // PrintBytesWithLinePrefix prints objBytes to writer w with linePrefix in the beginning of every line
    func PrintBytesWithLinePrefix(w io.Writer, objBytes []byte, linePrefix string) {
    	scanner := bufio.NewScanner(bytes.NewReader(objBytes))
    	for scanner.Scan() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Task.java

        String getPath();
    
        /**
         * <p>Adds the given {@link Action} to the beginning of this task's action list.</p>
         *
         * @param action The action to add
         * @return the task object this method is applied to
         */
        Task doFirst(Action<? super Task> action);
    
        /**
         * <p>Adds the given closure to the beginning of this task's action list. The closure is passed this task as a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    }
    
    // PreFilterPlugin is an interface that must be implemented by "PreFilter" plugins.
    // These plugins are called at the beginning of the scheduling cycle.
    type PreFilterPlugin interface {
    	Plugin
    	// PreFilter is called at the beginning of the scheduling cycle. All PreFilter
    	// plugins must return success or the pod will be rejected. PreFilter could optionally
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      auto control_island = dyn_cast_or_null<IslandOp>(control.getDefiningOp());
      if (!control_island) return false;
    
      // All islands perfectly wrap a single op is an invariant of this pass and
      // is checked at the very beginning of the pass.
      assert(control_island.WrapsSingleOp());
      return control_island.getOutputs().empty() &&
             isa<TF::NoOp>(control_island.GetBody().front());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/map.go

    }
    
    // aztrLowerSpan would be the same as isLower.
    
    func nlTitle(c *context) bool {
    	// From CLDR:
    	// # Special titlecasing for Dutch initial "ij".
    	// ::Any-Title();
    	// # Fix up Ij at the beginning of a "word" (per Any-Title, notUAX #29)
    	// [:^WB=ALetter:] [:WB=Extend:]* [[:WB=MidLetter:][:WB=MidNumLet:]]? { Ij } → IJ ;
    	if c.src[c.pSrc] != 'I' && c.src[c.pSrc] != 'i' {
    		return title(c)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //     .     matches any single character except \n
    //     A?    matches 0 or 1 occurrences of A
    //     A*    matches 0 or many occurrences of A
    //     A+    matches 1 or many occurrences of A
    //     ^     matches the beginning of a string (not that of each line)
    //     $     matches the end of a string (not that of each line)
    //     xy    matches x followed by y
    //
    //   If you accidentally use PCRE or POSIX extended regex features
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Splitter.java

       * returns an iterable containing {@code ["a ", "b_ ", "c"]}.
       *
       * @param trimmer a {@link CharMatcher} that determines whether a character should be removed from
       *     the beginning/end of a subsequence
       * @return a splitter with the desired configuration
       */
      // TODO(kevinb): throw if a trimmer was already specified!
      public Splitter trimResults(CharMatcher trimmer) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/inline.go

    	// (2a) not followed by a Unicode punctuation character, or
    	// (2b) followed by a Unicode punctuation character
    	// and preceded by Unicode whitespace or a Unicode punctuation character.
    	// For purposes of this definition, the beginning and the end
    	// of the line count as Unicode whitespace.”
    	leftFlank := !isUnicodeSpace(after) &&
    		(!isUnicodePunct(after) || isUnicodeSpace(before) || isUnicodePunct(before))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    ----
    $ gradle -q hello
    include::{snippetsPath}/tutorial/helloEnhanced/tests/helloEnhanced.out[]
    ----
    ====
    
    TIP: The calls `doFirst` and `doLast` can be executed multiple times.
    They add an action to the beginning or the end of the task's actions list.
    When the task executes, the actions in the action list are executed in order.
    
    Here is an example of the `named` method being used to configure a task added by a plugin:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top