Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 170 for rebuild (0.17 sec)

  1. pkg/volume/csi/csi_plugin_test.go

    			if err != nil {
    				t.Fatalf("failed to save fake volume info file: %s", err)
    			}
    
    			// rebuild spec
    			rec, err := plug.ConstructVolumeSpec("test-pv", filepath.Dir(csiMounter.GetPath()))
    			if err != nil {
    				t.Fatal(err)
    			}
    			if rec.Spec == nil {
    				t.Fatal("nil volume.Spec constructed")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    		event = model.EventUpdate
    		mcsService = mcsService.DeepCopy()
    		if ic.updateIPs(mcsService, ips) {
    			needsFullPush = true
    		}
    	}
    
    	// Always force a rebuild of the endpoint cache in case this import caused
    	// a change to the discoverability policy.
    	ic.addOrUpdateService(nil, nil, mcsService, event, true)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. 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)
  4. android/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)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

        fun `avoids buildscript recompilation on included build JAR rebuild`() {
    
            withDefaultSettingsIn("build-logic")
                .appendText("""rootProject.name = "build-logic"""")
            withKotlinDslPluginIn("build-logic")
            withFile("build-logic/src/main/kotlin/my-plugin.gradle.kts", "")
            val className = kotlinClassSourceFile("build-logic", """
                inline fun foo() { println("bar") }
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            javaProject.assertBuildTasksSkipped(result)
    
            where:
            buildDirName | defaultDir | description
            'build'      | true       | 'default build directory'
            'out'        | false      | 'reconfigured build directory'
        }
    
        def "production class files outside of 'build' are removed"() {
            given:
            def javaProject = new StaleOutputJavaProject(testDirectory, 'out')
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/encoding/json/bench_test.go

    	clearCache := func() {
    		fieldCache = sync.Map{}
    	}
    
    	// MissTypes tests the performance of repeated cache misses.
    	// This measures the time to rebuild a cache of size nt.
    	for nt := 1; nt <= maxTypes; nt *= 10 {
    		ts := types[:nt]
    		b.Run(fmt.Sprintf("MissTypes%d", nt), func(b *testing.B) {
    			nc := runtime.GOMAXPROCS(0)
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    =====
    [source,kotlin]
    ----
    .
    ├── settings.gradle.kts
    ├── subproject-one
    │   └── build.gradle.kts
    └── subproject-two
        └── build.gradle.kts
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    .
    ├── settings.gradle
    ├── subproject-one
    │   └── build.gradle
    └── subproject-two
        └── build.gradle
    ----
    =====
    ====
    
    [[sec:build_sources]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    This means unrelated changes (such as changes to build scripts) will not trigger a rebuild.
    To incorporate build logic changes, the continuous build must be restarted manually.
    
    Continuous build uses <<file_system_watching.adoc#sec:daemon_watch_fs,file system watching>> to detect changes to the inputs.
    If file system watching does not work on your system, then continuous build won't work either.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top