Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for iterNested (0.63 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/BuildEventSubscriptions.java

    import org.gradle.tooling.events.OperationType;
    
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.Set;
    
    /**
     * Provides information about what events the build client is interested in.
     */
    public class BuildEventSubscriptions {
    
        private final Set<OperationType> operationTypes;
    
        public BuildEventSubscriptions(Set<OperationType> operationTypes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 21 18:56:37 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. src/net/dial_unix_test.go

    		t.Logf("connect(%d, addr) = %v", fd, err)
    		if err == nil {
    			// On some operating systems, localhost
    			// connects _sometimes_ succeed immediately.
    			// Prevent that, so we exercise the code path
    			// we're interested in testing. This seems
    			// harmless. It makes FreeBSD 10.10 work when
    			// run with many iterations. It failed about
    			// half the time previously.
    			return syscall.EINPROGRESS
    		}
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/fmahash_test.go

    	// The hash-dependence on file path name is dodged by specifying "all hashes ending in 1" plus "all hashes ending in 0"
    	// i.e., all hashes.  This will print all the FMAs; this test is only interested in one of them (that should appear near the end).
    	cmd.Env = append(cmd.Env, "GOCOMPILEDEBUG=fmahash=1/0", "GOOS=linux", "GOARCH=arm64", "HOME="+tmpdir)
    	t.Logf("%v", cmd)
    	t.Logf("%v", cmd.Env)
    	b, e := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/iter/iter.go

    // or after calling stop. These calls will continue
    // to return the zero V and false.
    //
    // Stop ends the iteration. It must be called when the caller is
    // no longer interested in next values and next has not yet
    // signaled that the sequence is over (with a false boolean return).
    // It is valid to call stop multiple times and when next has
    // already returned false.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

        val testTaskOptionsParameterName = "testTaskOptions"
        val daemon = true
        applyDefaultSettings(os, arch, buildJvm = BuildToolBuildJvm, timeout = 0)
    
        // Show all failed tests here, since that is what we are interested in
        failureConditions.supportTestRetry = false
    
        val extraParameters = functionalTestExtraParameters("RerunFlakyTest", os, arch, "%$testJvmVersionParameter%", "%$testJvmVendorParameter%")
        val parameters = (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSourceProviderFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Service to create providers from {@link ValueSource}s.
     *
     * Notifies interested parties when values are obtained from their sources.
     *
     * @since 6.1
     */
    @ServiceScope(Scope.Build.class)
    public interface ValueSourceProviderFactory {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     */
    
    package org.gradle.internal.watch.registry;
    
    import java.io.File;
    import java.util.stream.Stream;
    
    /**
     * A registry of watch probes. A probe serves as a way to prove that a hierarchy Gradle is interested in
     * indeed receives file system events from the operating system.
     * This is to avoid trusting locations where OSs silently not send any events, despite watchers being registered.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    				switch tname.Pkg().Path() {
    				case "encoding/json", "encoding/xml", "encoding/gob":
    					argidx = 0 // func(interface{})
    				}
    			}
    		}
    		if argidx < 0 {
    			return // not a function we are interested in
    		}
    
    		if len(call.Args) < argidx+1 {
    			return // not enough arguments, e.g. called with return values of another function
    		}
    
    		t := pass.TypesInfo.Types[call.Args[argidx]].Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

         * This method can be used to change the dependency before it is resolved,
         * e.g. change group, name or version (or all three of them).
         * In many cases users are interested in changing the version.
         * For such scenario you can use the {@link #useVersion(String)} method.
         *
         * @param notation the notation that gets parsed into an instance of {@link ModuleVersionSelector}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PredicatesFile.java

                )
            )) {
                return reader.lines()
                    // If a line starts with #, it's a comment
                    .filter(line -> !line.startsWith("#"))
                    // We are not interested in whitespaces on the line level
                    .map(String::trim)
                    // If the line was empty, or only contained space (which was cut by the trim before), we skip the line
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top