Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,178 for addLink (0.12 sec)

  1. src/log/slog/value_access_benchmark_test.go

    		return a.duration(), true
    	}
    	return 0, false
    }
    
    func (a Value) AsAny() (any, bool) {
    	if a.Kind() == KindAny {
    		return a.any, true
    	}
    	return nil, false
    }
    
    // Problem: adding a type means adding a method, which is a breaking change.
    // Using an unexported method to force embedding will make programs compile,
    // But they will panic at runtime when we call the new method.
    type Visitor interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.analysis
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.internal.declarativedsl.demo.resolve
    import org.gradle.internal.declarativedsl.language.Assignment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    It's quite common that issues with dependency management are about _transitive dependencies_.
    Often developers incorrectly fix transitive dependency issues by adding _direct dependencies_.
    To avoid this, Gradle provides the concept of _dependency constraints_.
    
    [[sec:adding-constraints-transitive-deps]]
    == Adding constraints on transitive dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/options/token.go

    	return bto
    }
    
    // BootstrapTokenOptions is a wrapper struct for adding bootstrap token-related flags to a FlagSet
    // and applying the parsed flags to a InitConfiguration object later at runtime
    // TODO: In the future, we might want to group the flags in a better way than adding them all individually like this
    type BootstrapTokenOptions struct {
    	*bootstraptokenv1.BootstrapToken
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildActionRunner.java

             */
            @Nullable
            public Throwable getClientFailure() {
                return clientFailure;
            }
    
            /**
             * Returns a copy of this result adding the given failures.
             */
            public Result addFailures(List<Throwable> failures) {
                if (failures.isEmpty()) {
                    return this;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

                        // Ensure parameters.outputFile is set before adding ourselves as a listener
                        if (!parameters.outputFile.present) {
                            throw new IllegalStateException("parameters.outputFile is not set")
                        }
                        loggingOutput = objects.newInstance(InternalServices).loggingOutput
                        println("ADDING " + this + " TO " + loggingOutput)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public abstract class AbstractMultisetSetCountTester<E> extends AbstractMultisetTester<E> {
      /*
       * TODO: consider adding MultisetFeatures.SUPPORTS_SET_COUNT. Currently we
       * assume that using setCount() to increase the count is permitted iff add()
       * is permitted and similarly for decrease/remove(). We assume that a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * (or {@link FluentFuture#transform(com.google.common.base.Function, Executor)
     * FluentFuture.transform}), but you will often find it easier to use a framework. Frameworks
     * automate the process, often adding features like monitoring, debugging, and cancellation.
     * Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies[]
    testing {
        suites {
            test { // <1>
                dependencies {
                    // Note that this is equivalent to adding dependencies to testImplementation in the top-level dependencies block
                    implementation 'org.assertj:assertj-core:3.21.0' // <2>
                    annotationProcessor 'com.google.auto.value:auto-value:1.9' // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/typed_xds_cache_test.go

    		},
    	}
    
    	c := newTypedXdsCache[uint64]()
    
    	cache := c.(*lruCache[uint64])
    
    	assert.Equal(t, cache.store.Len(), 0)
    	assert.Equal(t, cache.indexLength(), 0)
    
    	// adding the entry populates the indexes
    	c.Add(firstEntry.Key(), firstEntry, req, res)
    
    	assert.Equal(t, cache.store.Len(), 1)
    	assert.Equal(t, cache.indexLength(), 2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top