Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 543 for toTracking (0.29 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyErrorIntegrationTest.groovy

                    "Declare the task as untracked by using Task.doNotTrackState(). " +
                    new DocumentationRegistry().getDocumentationRecommendationFor("information", "incremental_build", "sec:disable-state-tracking")
                )
                failure.assertHasCause("java.nio.file.AccessDeniedException: ${dir}")
            } finally {
                dir.permissions = oldPermissions
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:48:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. istioctl/pkg/wait/wait.go

    	if count, ok := versionCount[configVersion]; ok {
    		versionCount[configVersion] = count + 1
    	} else {
    		versionCount[configVersion] = 1
    	}
    }
    
    const distributionTrackingDisabledErrorString = "pilot version tracking is disabled " +
    	"(To enable this feature, please set PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true)"
    
    func poll(ctx cli.Context,
    	cmd *cobra.Command,
    	acceptedVersions []string,
    	targetResource string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    // implement the "_gather_saveables_for_checkpoint" method
    // https://github.com/tensorflow/tensorflow/blob/ddc1bbad3dfd4a089eb96014f26cc16664b1b2f8/tensorflow/python/training/tracking/base.py#L953-L983
    // which returns a dict of string key -> EITHER:
    // 1. python callable (taking a checkpoint key) returning SaveableObject OR
    // 2. variable (partitioned/resource/reference or otherwise)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveChangesStep.java

        private static final ImmutableList<String> NO_HISTORY = ImmutableList.of("No history is available.");
        private static final ImmutableList<String> UNTRACKED = ImmutableList.of("Change tracking is disabled.");
        private static final ImmutableList<String> VALIDATION_FAILED = ImmutableList.of("Incremental execution has been disabled to ensure correctness. Please consult deprecation warnings for more details.");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/TaskInternal.java

        @Internal
        Spec<? super TaskInternal> getOnlyIf();
    
        /**
         * Return the reason for not to track state.
         *
         * Gradle considers the task as untracked if the reason is present.
         * When not tracking state, a reason must be present. Hence the {@code Optional} represents the state of enablement, too.
         *
         * @see org.gradle.api.tasks.UntrackedTask
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/internal/coverage/pkid.go

    // dependencies, unexpected behavior will result for coverage builds.
    // The coverage runtime will detect and report the unexpected
    // behavior; look for an error of this form:
    //
    //    internal error in coverage meta-data tracking:
    //    list of hard-coded runtime package IDs needs revising.
    //    registered list:
    //    slot: 0 path='internal/cpu'  hard-coded id: 1
    //    slot: 1 path='internal/goarch'  hard-coded id: 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. docs/changelogs/upgrading_to_okhttp_4.md

    with Java.
    
    We spent a lot of time and energy on retaining strict compatibility with OkHttp 3.x. We’re even
    keeping the package name the same: `okhttp3`!
    
    There are three kinds of compatibility we’re tracking:
    
     * **Binary compatibility** is the ability to compile a program against OkHttp 3.x, and then to run
       it against OkHttp 4.x. We’re using the excellent [japicmp][japicmp] library via its
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. pkg/kube/rpc_creds.go

    	sunsetPeriod time.Duration
    }
    
    var _ credentials.PerRPCCredentials = &tokenSupplier{}
    
    // NewRPCCredentials creates a PerRPCCredentials capable of getting tokens from Istio and tracking their expiration
    func NewRPCCredentials(kubeClient Client, tokenNamespace, tokenSA string,
    	tokenAudiences []string, expirationSeconds, sunsetPeriodSeconds int64,
    ) (credentials.PerRPCCredentials, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pilot/pkg/model/kstatus/helper.go

    	}
    }
    
    // WrappedStatus provides a wrapper around a status message that keeps track of whether or not any
    // changes have been made. This allows users to declarative write status, without worrying about
    // tracking changes. When read to commit (typically to Kubernetes), any messages with Dirty=false can
    // be discarded.
    type WrappedStatus struct {
    	// Status is the object that is wrapped.
    	config.Status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager_test.go

    		t.Errorf("expected to have managed fields, but got: %v", m)
    	}
    
    	// stop tracking managed fields
    	newObj = &unstructured.Unstructured{Object: map[string]interface{}{}}
    	deployment = []byte(`
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-deployment
      managedFields: [] # stop tracking managed fields
      labels:
        app: my-app
    spec:
      replicas: 100
    `)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top