Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 572 for addLine (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    |===
    
    [[sec:scala_compiler_plugins]]
    == Adding plugins to the Scala compiler
    
    The Scala plugin adds a configuration named `scalaCompilerPlugins` which is used to declare and resolve optional compiler plugins.
    
    .Adding a dependency on a Scala compiler plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

    import static org.gradle.api.internal.artifacts.dsl.dependencies.DependencyFactoryInternal.ClassPathNotation.LOCAL_GROOVY;
    
    /**
     * Adapts Gradle's dependency resolution engine to the special needs of the IDE plugins.
     * Allows adding and subtracting {@link Configuration}s, working in offline mode and downloading sources/javadoc.
     */
    public class IdeDependencySet {
        private final DependencyHandler dependencyHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

            fails('test')
    
            then:
            new DefaultTestExecutionResult(testDirectory)
                .testClassStartsWith('Gradle Test Executor')
                .assertExecutionFailedWithCause(containsString('consider adding an engine implementation JAR to the classpath'))
        }
    
        // When running embedded with test distribution, the remote distribution has a newer version of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/controller/certificates/signer/signer.go

    			LastUpdateTime: metav1.Now(),
    		})
    		_, err = s.client.CertificatesV1().CertificateSigningRequests().UpdateStatus(ctx, csr, metav1.UpdateOptions{})
    		if err != nil {
    			return fmt.Errorf("error adding failure condition for csr: %v", err)
    		}
    		return nil
    	} else if !recognized {
    		// Ignore requests for kubernetes.io signerNames we don't recognize
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. cmd/xl-storage-disk-id-check.go

    	mu        sync.Mutex
    	init      sync.Once
    	lastMinuteLatency
    }
    
    func (e *lockedLastMinuteLatency) add(value time.Duration) {
    	e.addSize(value, 0)
    }
    
    // addSize will add a duration and size.
    func (e *lockedLastMinuteLatency) addSize(value time.Duration, sz int64) {
    	// alloc on every call, so we have a clean entry to swap in.
    	t := time.Now().Unix()
    	e.init.Do(func() {
    		e.cached.Store(&AccElem{})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            for (T thing : things) {
                if (!predicate.isSatisfiedBy(thing)) {
                    return false;
                }
            }
    
            return true;
        }
    
        /**
         * Utility for adding an iterable to a collection.
         *
         * @param t1 The collection to add to
         * @param t2 The iterable to add each item of to the collection
         * @param <T> The element type of t1
         * @return t1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

            fails("test")
            failure.assertHasErrorOutput("Configuring tests failed")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20846")
        def "when tests are NOT run they are NOT configured - even when adding an implementation dep"() {
            given: "a build which will throw an exception upon configuring test tasks"
            file("build.gradle") << """
                plugins {
                    id 'java-library'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	// only add properties if we have a schema. Otherwise, kubectl would (wrongly) assume additionalProperties=false
    	// and forbid anything outside of apiVersion, kind and metadata. We have to fix kubectl to stop doing this, e.g. by
    	// adding additionalProperties=true support to explicitly allow additional fields.
    	// TODO: fix kubectl to understand additionalProperties=true
    	if schema == nil || (opts.V2 && (schema.XPreserveUnknownFields || crdPreserveUnknownFields)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. pilot/pkg/trustbundle/trustbundle_test.go

    	if !slices.Equal(trustedCerts, []string{intermediateCACert}) || cbCounter != 2 {
    		t.Errorf("trustbundle intermediate cert update test failed. Callback value is %v", cbCounter)
    	}
    
    	// Try adding one more cert to a different source
    	// Ensure both certs are not present
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{rootCACert}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/etcd/etcd.go

    			defer cancel()
    			if isLearner {
    				// if learnerID is set, it means the etcd member is already added successfully.
    				if learnerID == 0 {
    					klog.V(1).Info("[etcd] Adding etcd member as learner")
    					resp, err = cli.MemberAddAsLearner(ctx, []string{peerAddrs})
    					if err != nil {
    						lastError = err
    						return false, nil
    					}
    					learnerID = resp.Member.ID
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top