Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,558 for necessarily (0.44 sec)

  1. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

    package org.gradle.internal.configuration.problems
    
    import org.gradle.internal.DisplayName
    import org.gradle.internal.problems.failure.Failure
    import kotlin.reflect.KClass
    
    
    /**
     * A problem that does not necessarily compromise the execution of the build.
     */
    data class PropertyProblem(
        val trace: PropertyTrace,
        val message: StructuredMessage,
        val exception: Throwable? = null,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/net/fd_unix.go

    			case <-done:
    				interruptRes <- nil
    			}
    		}()
    	}
    
    	for {
    		// Performing multiple connect system calls on a
    		// non-blocking socket under Unix variants does not
    		// necessarily result in earlier errors being
    		// returned. Instead, once runtime-integrated network
    		// poller tells us that the socket is ready, get the
    		// SO_ERROR socket option to see if the connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/compress/zlib/writer.go

    		if err != nil {
    			return err
    		}
    		z.digest = adler32.New()
    	}
    	return nil
    }
    
    // Write writes a compressed form of p to the underlying io.Writer. The
    // compressed bytes are not necessarily flushed until the Writer is closed or
    // explicitly flushed.
    func (z *Writer) Write(p []byte) (n int, err error) {
    	if !z.wroteHeader {
    		z.err = z.writeHeader()
    	}
    	if z.err != nil {
    		return 0, z.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * The Java tools location is {@link StandardLocation#CLASS_PATH}.
         *
         * <h4>Context-sensitive interpretation</h4>
         * A dependency with this path type will not necessarily be placed on the class-path.
         * There are two circumstances where the dependency may nevertheless be placed somewhere else:
         *
         * <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

        /**
         * Returns the direct children of this project, in public iteration order.
         */
        Set<ProjectState> getChildProjects();
    
        /**
         * Returns the name of this project (which may not necessarily be unique).
         */
        String getName();
    
        /**
         * Returns an identifying path for this project in the build tree.
         */
        Path getIdentityPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_trimpath.txt

    go build -trimpath -o paths-b.exe paths
    cmp -q paths-a.exe paths-b.exe
    
    
    # Same sequence of tests but with gccgo.
    # gccgo does not support builds in module mode.
    [!exec:gccgo] stop
    [cross] stop  # gccgo can't necessarily cross-compile
    env GOPATH=$WORK/a
    
    # A binary built with gccgo without -trimpath should contain the current
    # GOPATH and GOROOT.
    go build -compiler=gccgo -o paths-dbg.exe paths
    exec ./paths-dbg.exe paths-dbg.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            where:
            larger  | smaller
            "1.0.0" | "1.0"
            "1.0.0" | "1"
        }
    
        def "incorrectly compares Maven snapshot-like versions (current behaviour not necessarily desired behaviour"() {
            expect:
            compare(smaller, larger) < 0
            compare(larger, smaller) > 0
            compare(smaller, smaller) == 0
            compare(larger, larger) == 0
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

     * feature to get access to the optional dependencies.</p>
     *
     * <p>This "extending" functionality is fragile, in that it allows the production code to be compiled and
     * tested against dependencies which will not necessarily be present at runtime. For this reason, we are
     * planning to deprecate the "extending" functionality. For more information, see {@link #doExtendProductionCode}.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * not necessarily mean that a new process will be created for each compile task.
         * Defaults to {@code false}.
         */
        @Input
        public boolean isFork() {
            return fork;
        }
    
        /**
         * Sets whether to run the compiler in its own process. Note that this does
         * not necessarily mean that a new process will be created for each compile task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

            assert classpathB.projects.collect { it.name } == ['a']
            classpathB.assertHasLibs('compile-1.0.jar')
        }
    
        /*
         * This is a test describing the current, not necessarily desired behavior. We really shouldn't
         * put duplicate dependencies on the classpath. The order will always be arbitrary and break one
         * use case or another.
         */
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
Back to top