Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,387 for xoring (0.09 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/MutationGuard.java

         *
         * @param action the action to disable mutation during execution.
         * @param <T> the action parameter type
         * @return an action
         */
        <T> Action<? super T> withMutationDisabled(Action<? super T> action);
    
        /**
         * Wraps the specified action with mutation enabling code.
         *
         * @param action the action to enable mutation during execution.
         * @param <T> the action parameter type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 21:58:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/internal/trace/testtrace/format.go

    		}
    		if err := tw.WriteEvent(ev); err != nil {
    			return nil, nil, fmt.Errorf("internal error during %s: failed to write trace bytes: %v", testPath, err)
    		}
    	}
    	exp, err := ParseExpectation(ar.Files[0].Data)
    	if err != nil {
    		return nil, nil, fmt.Errorf("internal error during %s: failed to parse expectation %q: %v", testPath, string(ar.Files[0].Data), err)
    	}
    	return &buf, exp, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingResult.java

         * is thrown so this information is merely meant to assist the user.
         *
         * @return The identifier of the project or an empty string if not known, never {@code null}.
         */
        String getProjectId();
    
        /**
         * Gets the POM file from which the project was built.
         *
         * @return The POM file or {@code null} if unknown.
         */
        File getPomFile();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    //	Lang("1.21") = ""
    func Lang(x string) string {
    	v := lang(stripGo(x))
    	if v == "" {
    		return ""
    	}
    	return x[:2+len(v)] // "go"+v without allocation
    }
    
    // Compare returns -1, 0, or +1 depending on whether
    // x < y, x == y, or x > y, interpreted as Go versions.
    // The versions x and y must begin with a "go" prefix: "go1.21" not "1.21".
    // Invalid versions, including the empty string, compare less than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

            int getReceivedFileSystemEventsInCurrentBuild() {
                def duringBuildStatusLine = spec.result.getPostBuildOutputLineThatContains(" file system events during the current build")
                def numberMatcher = duringBuildStatusLine =~ /Received (\d+) file system events during the current build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesInCurrentBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperTest.groovy

    import org.junit.Rule
    
    class HttpClientHelperTest extends AbstractHttpClientTest {
        @Rule SetSystemProperties sysProp = new SetSystemProperties()
    
        def "throws HttpRequestException if an IO error occurs during a request"() {
            def client = new HttpClientHelper(new DocumentationRegistry(), httpSettings) {
                @Override
                protected HttpClientResponse executeGetOrHead(HttpRequestBase method) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileLineEndingSensitivityIntegrationTest.groovy

        private static String compileTask = ':compileJava'
    
        def setup() {
            buildFile << """
                plugins {
                    id 'java'
                }
            """
        }
    
        def "java compile is not sensitive to line endings during up-to-date checks"() {
            writeJavaSourceWithUnixLineEndings()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. releasenotes/notes/34847.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 25 06:09:14 UTC 2021
    - 176 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                    }
                }
            '''
    
            expect:
            succeeds 'assertActionExecutionOrder'
        }
    
        def "can execute #description during task creation action execution"() {
            createDirs("nested")
            settingsFile << "include 'nested'"
            buildFile << """
                tasks.create("foo") {
                    ${code}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. releasenotes/notes/standard-alpn.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 24619
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 30 20:19:42 UTC 2020
    - 191 bytes
    - Viewed (0)
Back to top