Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,434 for onDone (0.1 sec)

  1. guava/src/com/google/common/annotations/VisibleForTesting.java

     * for use in test code.
     *
     * <p><b>Do not use this interface</b> for public or protected declarations: it is a fig leaf for
     * bad design, and it does not prevent anyone from using the declaration---and experience has shown
     * that they will. If the method breaks the encapsulation of its class, then its internal
     * representation will be hard to change. Instead, use <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 30 22:25:16 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/annotations/VisibleForTesting.java

     * for use in test code.
     *
     * <p><b>Do not use this interface</b> for public or protected declarations: it is a fig leaf for
     * bad design, and it does not prevent anyone from using the declaration---and experience has shown
     * that they will. If the method breaks the encapsulation of its class, then its internal
     * representation will be hard to change. Instead, use <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 30 22:25:16 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/os/exec/exec_linux_test.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && cgo
    
    // On systems that use glibc, calling malloc can create a new arena,
    // and creating a new arena can read /sys/devices/system/cpu/online.
    // If we are using cgo, we will call malloc when creating a new thread.
    // That can break TestExtraFiles if we create a new thread that creates
    // a new arena and opens the /sys file while we are checking for open
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. src/net/interface_unix_test.go

    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    	if os.Getuid() != 0 {
    		t.Skip("must be root")
    	}
    
    	// We suppose that using IPv4 link-local addresses doesn't
    	// harm anyone.
    	local, remote := "169.254.0.1", "169.254.0.254"
    	ip := ParseIP(remote)
    	for i := 0; i < 3; i++ {
    		ti := &testInterface{local: local, remote: remote}
    		if err := ti.setPointToPoint(5963 + i); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 23:51:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            return projectRequired;
        }
    
        // ----------------------------------------------------------------------
        // Online vs. Offline requirement
        // ----------------------------------------------------------------------
    
        /**
         * @param requiresOnline <code>true</code> if the Mojo is online, <code>false</code> otherwise.
         */
        public void setOnlineRequired(boolean requiresOnline) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. cmd/site-replication-metrics_gen.go

    			}
    		case "LastOnline":
    			z.LastOnline, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "LastOnline")
    				return
    			}
    		case "Online":
    			z.Online, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Online")
    				return
    			}
    		case "Latency":
    			err = z.Latency.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Latency")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

                    ${repoType}2(${repoB.uri})
            """.stripIndent().trim()))
    
            where:
            repoType << [IVY, MAVEN]
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "Can opt-in to plugin portal"() {
            given:
            publishPlugins(MAVEN)
            requireOwnGradleUserHomeDir()
            buildScript """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. docs/contribute/code_of_conduct.md

    unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and
    expect our code of conduct to be honored.
    
    Square’s open source community strives to:
    
     * **Be open**: We invite anyone to participate in any aspect of our projects. Our community is
       open, and any responsibility can be carried by a contributor who demonstrates the required
       capacity and competence.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. cmd/metrics-v3-cache.go

    		clusterDriveMetrics: newClusterStorageInfoCache(),
    		nodesUpDown:         newNodesUpDownCache(),
    	}
    }
    
    type nodesOnline struct {
    	Online, Offline int
    }
    
    func newNodesUpDownCache() *cachevalue.Cache[nodesOnline] {
    	loadNodesUpDown := func(ctx context.Context) (v nodesOnline, err error) {
    		v.Online, v.Offline = globalNotificationSys.GetPeerOnlineCount()
    		return
    	}
    	return cachevalue.NewFromFunc(1*time.Minute,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageTypeSampleIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.junit.Rule
    
    @Requires(UnitTestPreconditions.Online)
    @UnsupportedWithConfigurationCache(because = "software model")
    class LanguageTypeSampleIntegrationTest extends AbstractIntegrationSpec {
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top