Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 410 for rebind (0.16 sec)

  1. guava/src/com/google/common/net/HostAndPort.java

          return Objects.equal(this.host, that.host) && this.port == that.port;
        }
        return false;
      }
    
      @Override
      public int hashCode() {
        return Objects.hashCode(host, port);
      }
    
      /** Rebuild the host:port string, including brackets if necessary. */
      @Override
      public String toString() {
        // "[]:12345" requires 8 extra bytes.
        StringBuilder builder = new StringBuilder(host.length() + 8);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/net/ipsock.go

    		end := bytealg.IndexByteString(hostport, ']')
    		if end < 0 {
    			return addrErr(hostport, "missing ']' in address")
    		}
    		switch end + 1 {
    		case len(hostport):
    			// There can't be a ':' behind the ']' now.
    			return addrErr(hostport, missingPort)
    		case i:
    			// The expected result.
    		default:
    			// Either ']' isn't followed by a colon, or it is
    			// followed by a colon that is not the last one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/OrderingTest.java

        /*
         * If greatestOf() promised to be implemented as reverse().leastOf(), this
         * test would be enough. It doesn't... but we'll cheat and act like it does
         * anyway. There's a comment there to remind us to fix this if we change it.
         */
        List<Integer> list = Arrays.asList(3, 1, 3, 2, 4, 2, 4, 3);
        assertEquals(Arrays.asList(4, 4, 3, 3), numberOrdering.greatestOf(list, 4));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  4. cmd/prepare-storage.go

    			m[err.Error()]--
    			m[err.Error()]--
    		}
    		m[err.Error()]++
    	}
    }()
    
    // Cleans up tmp directory of the local disk.
    func bgFormatErasureCleanupTmp(diskPath string) {
    	// Need to move temporary objects left behind from previous run of minio
    	// server to a unique directory under `minioMetaTmpBucket-old` to clean
    	// up `minioMetaTmpBucket` for the current run.
    	//
    	// /disk1/.minio.sys/tmp-old/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | link:https://issuetracker.google.com/issues/110061530#comment28[AGP 3.5.0-alpha5]
    | Hidden behind a feature toggle
    
    | Dagger
    | link:https://github.com/google/dagger/issues/1120[2.18]
    | 2.18 Feature toggle support, 2.24 Enabled by default
    
    | kapt
    | link:https://youtrack.jetbrains.com/issue/KT-23880[1.3.30]
    | Hidden behind a feature toggle
    
    | Toothpick
    | link:https://github.com/stephanenicolas/toothpick/pull/320[2.0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Indicates that versions for the specified modules have to be updated in the <<dependency_locking.adoc#dependency-locking,lock file>>.
    +
    This flag also implies `--write-locks`.
    
    `-a`, `--no-rebuild`::
    Do not rebuild project dependencies.
    Useful for <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc, debugging and fine-tuning `buildSrc`>>, but can lead to wrong results. Use with caution!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repairip.go

    	services, err := r.serviceLister.List(labels.Everything())
    	if err != nil {
    		return fmt.Errorf("unable to refresh the service IP block: %v", err)
    	}
    
    	// Check every Service's ClusterIP, and rebuild the state as we think it should be.
    	for _, svc := range services {
    		key, err := cache.MetaNamespaceKeyFunc(svc)
    		if err != nil {
    			return err
    		}
    		err = r.syncService(key)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    == Step 6. Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes is to publish a link:https://scans.gradle.com[Build Scan].
    To do so, run the `build` task again with the `--scan` flag.
    
    [source]
    ----
    $ ./gradlew build --scan
    > Task :app:compileJava UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

    ### Tests
    
    * Help me check that the PR has **tests**.
    
    * Check that the tests **fail** before the PR. 🚨
    
    * Then check that the tests **pass** after the PR. ✅
    
    * Many PRs don't have tests, you can **remind** them to add tests, or you can even **suggest** some tests yourself. That's one of the things that consume most time and you can help a lot with that.
    
    * Then also comment what you tried, that way I'll know that you checked it. 🤓
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

                javaProject.assertJarHasDescendants(javaProject.mainClassFile.name, javaProject.redundantClassFile.name)
            }
    
            when:
            // Remove some files and rebuild a single task with the latest version of Gradle
            javaProjects.each {
                forceDelete(it.redundantSourceFile)
            }
            executer.withArguments(arguments)
            succeeds(singleTask)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top