Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 151 for contextual (3.75 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

    import com.google.common.collect.Iterators;
    import com.google.common.collect.Lists;
    import javax.annotation.concurrent.ThreadSafe;
    import org.gradle.api.GradleException;
    import org.gradle.internal.exceptions.Contextual;
    
    import javax.annotation.Nullable;
    import java.util.Iterator;
    import java.util.List;
    import java.util.StringTokenizer;
    import java.util.WeakHashMap;
    
    import static java.lang.System.arraycopy;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

      Migrated the `PersistentVolumeClaim` protection controller (within `kube-controller-manager`) to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultWorkerExecutor.java

    import org.gradle.internal.classpath.CachedClasspathTransformer;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.DefaultClassPath;
    import org.gradle.internal.exceptions.Contextual;
    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    import org.gradle.internal.exceptions.NonGradleCauseExceptionsHolder;
    import org.gradle.internal.isolated.IsolationScheme;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. pilot/test/util/diff.go

    // It is set using the environment variable REFRESH_GOLDEN.
    func Refresh() bool {
    	return env.Register("REFRESH_GOLDEN", false, "").Get()
    }
    
    // Compare compares two byte slices. It returns an error with a
    // contextual diff if they are not equal.
    func Compare(content, golden []byte) error {
    	data := strings.TrimSpace(string(content))
    	expected := strings.TrimSpace(string(golden))
    
    	if data != expected {
    		diff := difflib.UnifiedDiff{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 08:53:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	// phaseRunners is part of the internal state of the runner and provides
    	// a list of wrappers to phases composing the workflow with contextual
    	// information supporting phase execution.
    	phaseRunners []*phaseRunner
    }
    
    // phaseRunner provides a wrapper to a Phase with the addition of a set
    // of contextual information derived by the workflow managed by the Runner.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

    import org.gradle.api.provider.SupportsConvention;
    import org.gradle.internal.Describables;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.exceptions.Contextual;
    import org.gradle.internal.logging.text.TreeFormatter;
    import org.gradle.internal.state.ModelObject;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Migrated `pod-security-admission` to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging). ([#114471](https://github.com/kubernetes/kubernetes/pull/114471), [@Namanl2001](https://github.com/Namanl2001)) [SIG Apps and Auth]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/JvmLibraryArtifactResolveTestFixture.groovy

         */
        void prepare() {
            buildFile << """
    configurations {
        ${config}
    }
    dependencies {
        ${config} "${id.group}:${id.module}:${id.version}"
    }
    
    @org.gradle.internal.exceptions.Contextual
    class VerificationException extends org.gradle.internal.exceptions.DefaultMultiCauseException {
        public VerificationException(String message, Iterable<? extends Throwable> causes) {
            super(message, causes)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. pkg/registry/core/service/strategy.go

    	}
    
    	return fields
    }
    
    // PrepareForCreate sets contextual defaults and clears fields that are not allowed to be set by end users on creation.
    func (svcStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	service := obj.(*api.Service)
    	service.Status = api.ServiceStatus{}
    
    	dropServiceDisabledFields(service, nil)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if this version retains the original build failure on cancellation (with all context) in the client and build logging, rather than discarding contextual exceptions.
         */
        boolean isToolingApiRetainsOriginalFailureOnCancel();
    
        /**
         * Returns true if this version has a useful cause attached to the exception thrown by the tooling API client on build cancel.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top