Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 582 for werde (0.04 sec)

  1. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                    // the next run from cache.
                    mutatedSystemProperties[key] = SystemPropertyRemove(key)
                } else {
                    // If the key is not a string, it can only affect properties that were set by the build logic. There is
                    // no need to persist the removal, but the set value should not be persisted too. A placeholder value
                    // will keep the key mutated to avoid recording it as an input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/internal/trace/oldtrace_test.go

    						"post-existing region": struct{}{},
    						"region0":              struct{}{},
    						"region1":              struct{}{},
    					}
    					// Check that we correctly convert user regions. These
    					// strings were generated by
    					// runtime/trace.TestUserTaskRegion, which is the basis for
    					// the user_task_region_* test cases. We only check for the
    					// Go 1.21 traces because earlier traces used different
    					// strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ExecutionList.java

        // it.
        executeListener(runnable, executor);
      }
    
      /**
       * Runs this execution list, executing all existing pairs in the order they were added. However,
       * note that listeners added after this point may be executed before those previously added, and
       * note that the execution order of all listeners is ultimately chosen by the implementations of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_volumes.go

    // its subdirectories. There should be no files left under normal conditions
    // when this is called, so it effectively does a recursive rmdir instead of
    // RemoveAll to ensure it only removes empty directories and files that were
    // used as mount points, but not content of the mount points.
    func (kl *Kubelet) removeOrphanedPodVolumeDirs(uid types.UID) []error {
    	orphanVolumeErrors := []error{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableBiMap.java

         * @throws IllegalArgumentException if duplicate keys or values were added
         */
        @Override
        public ImmutableBiMap<K, V> build() {
          return buildOrThrow();
        }
    
        /**
         * Returns a newly-created immutable bimap, or throws an exception if any key or value was added
         * more than once. The iteration order of the returned bimap is the order in which entries were
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. hack/logcheck.conf

    # golangci-lint will report stale results:
    #    _output/local/bin/golangci-lint cache clean
    
    # At this point we don't enforce the usage structured logging calls except in
    # those packages that were migrated. This disables the check for other files.
    -structured .*
    
    # Now enable it again for migrated packages.
    structured k8s.io/kubernetes/cmd/kubelet/.*
    structured k8s.io/kubernetes/pkg/kubelet/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. docs/de/docs/how-to/custom-docs-ui-assets.md

    # Statische Assets der Dokumentationsoberfläche (selbst hosten)
    
    Die API-Dokumentation verwendet **Swagger UI** und **ReDoc**, und jede dieser Dokumentationen benötigt einige JavaScript- und CSS-Dateien.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/io/io.go

    	}
    	return w.Write([]byte(s))
    }
    
    // ReadAtLeast reads from r into buf until it has read at least min bytes.
    // It returns the number of bytes copied and an error if fewer bytes were read.
    // The error is EOF only if no bytes were read.
    // If an EOF happens after reading fewer than min bytes,
    // ReadAtLeast returns [ErrUnexpectedEOF].
    // If min is greater than the length of buf, ReadAtLeast returns [ErrShortBuffer].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

            failure.assertHasErrorOutput('error: package rx.observers does not exist')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/11995")
        def "provides a human understable error message when some variants were discarded and the remainder is ambiguous"() {
            buildFile << """
                apply plugin: 'java-base'
    
                configurations {
                    consumer {
                        assert canBeResolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    - `UP-TO-DATE` - tasks that used incremental build and were not re-run.
    
    To summarize:
    
    1. First, we used the `build` task to populate our local cache with task inputs and outputs -- we can imagine this was done a week ago.
    2. Then, we used the `clean` task to mimic switching branches -- overriding previous outputs.
    3. Finally, we used the `build` task -- unlike incremental builds, the previous outputs were stored in the local cache and could be reused.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top