Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 192 for scouse (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    * Consumable configurations should not have their dependencies, hierarchy, attributes, etc. modified after they have been published or consumed as a variant.
    * Dependency scope configurations should not have their dependencies, constraints, etc. modified after a configuration that extends from them are observed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Causes a trace (including the source file path, the current line
    // number, and the given message) to be included in every test failure
    // message generated by code in the current scope.  The effect is
    // undone when the control leaves the current scope.
    //
    // The message argument can be anything streamable to std::ostream.
    //
    // In the implementation, we include the current line number as part
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    // for by the next pacing up date. Underestimating the fragmentation however
    // could lead to performance degradation. Handling this case is not within the
    // scope of the scavenger. Situations where the amount of fragmentation balloons
    // over the course of a single GC cycle should be considered pathologies,
    // flagged as bugs, and fixed appropriately.
    //
    // An additional factor of retainExtraPercent is added as a buffer to help ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In Java or Groovy, this mismatch did not cause problems at compile time.
    In Kotlin, this mismatch made valid code difficult to write because the language would not allow you to pass null.
    
    One particular example was returning `null` from a `Provider#map` or `Provider#flatMap`. In both APIs, Gradle allows you to return null, but in the Kotlin DSL this was considered illegal.
    
    This correction may cause compilation errors in code that expected non-null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSortedMap.java

        }
    
        /**
         * Associates {@code key} with {@code value} in the built map. Duplicate keys, according to the
         * comparator (which might be the keys' natural order), are not allowed, and will cause {@link
         * #build} to fail.
         */
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> put(K key, V value) {
          super.put(key, value);
          return this;
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * project. The properties of this scope are read-only.</li>
     *
     * </ul>
     *
     * <p>When reading a property, the project searches the above scopes in order, and returns the value from the first
     * scope it finds the property in. If not found, an exception is thrown. See {@link #property(String)} for more details.</p>
     *
     * <p>When writing a property, the project searches the above scopes in order, and sets the property in the first scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            e.message == "Failed to query the value of <property>."
            e.cause.message == "broken!"
    
            when:
            property.get()
    
            then:
            def e2 = thrown(AbstractProperty.PropertyQueryException)
            e2.message == "Failed to query the value of <property>."
            e2.cause.message == "broken!"
        }
    
        def "can set untyped using null"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

          Log-Output "$($entry.Name): $($entry.Value)"
        }
      }
      return ${kube_env_table}
    }
    
    # Sets the environment variable $Key to $Value at the Machine scope (will
    # be present in the environment for all new shells after a reboot).
    function Set_MachineEnvironmentVar {
      param (
        [parameter(Mandatory=$true)] [string]$Key,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// Note that the assist ratio values are updated atomically
    	// but not together. This means there may be some degree of
    	// skew between the two values. This is generally OK as the
    	// values shift relatively slowly over the course of a GC
    	// cycle.
    	assistWorkPerByte := float64(scanWorkRemaining) / float64(heapRemaining)
    	assistBytesPerWork := float64(heapRemaining) / float64(scanWorkRemaining)
    	c.assistWorkPerByte.Store(assistWorkPerByte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/defaults_test.go

    			t.Errorf("Defaults for PodTemplateSpec changed. This can cause spurious rollouts of workloads on API server upgrade.")
    			t.Logf(cmp.Diff(expected, defaults))
    		}
    	})
    }
    
    // TestPodDefaults detects changes to defaults within PodSpec.
    // Defaulting changes within this type (*especially* within containers) can cause kubelets to restart containers on API server update.
    func TestPodDefaults(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top