Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,505 for Mutation (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            throw new UnsupportedOperationException("Mutation of attributes is not allowed");
        }
    
        @Override
        public ImmutableSet<Attribute<?>> keySet() {
            return hierarchy.keySet();
        }
    
        @Override
        public <T> AttributeContainer attributeProvider(Attribute<T> key, Provider<? extends T> provider) {
            throw new UnsupportedOperationException("Mutation of attributes is not allowed");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. internal/disk/directio_unsupported.go

    // polluted with single-access data. The ZFS read cache (ARC) is scan-resistant
    // so there is no risk of polluting the entire cache with data accessed once.
    // Another goal of DirectIO is to minimize the mutation of data by the kernel
    // before issuing IO to underlying devices. ZFS users often enable features like
    // compression and checksumming which currently necessitates mutating data in
    // the kernel.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            when:
            strategy.cacheDynamicVersionsFor(1, "hours")
    
            then:
            1 * cachePolicy.cacheDynamicVersionsFor(1 * 60 * 60 * 1000, TimeUnit.MILLISECONDS)
        }
    
        def "mutation is checked for public API"() {
            def validator = Mock(MutationValidator)
            strategy.setMutationValidator(validator)
    
            when: strategy.failOnVersionConflict()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. tensorflow/c/tf_status.h

    TF_CAPI_EXPORT extern TF_Code TF_GetCode(const TF_Status* s);
    
    // Return a pointer to the (null-terminated) error message in *s.  The
    // return value points to memory that is only usable until the next
    // mutation to *s.  Always returns an empty string if TF_GetCode(s) is
    // TF_OK.
    TF_CAPI_EXPORT extern const char* TF_Message(const TF_Status* s);
    
    #ifdef __cplusplus
    } /* end extern "C" */
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. hack/make-rules/test-integration.sh

    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # start the cache mutation detector by default so that cache mutators will be found
    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
    export KUBE_CACHE_MUTATION_DETECTOR
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

     */
    public interface ReportContainer<T extends Report> extends NamedDomainObjectSet<T>, Configurable<ReportContainer<T>> {
    
        /**
         * The exception thrown when any of this container's mutation methods are called.
         * <p>
         * This applies to the standard {@link java.util.Collection} methods such as {@code add()}, {@code remove()}
         * and {@code clear()}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. .github/actions/notify-translations/app/main.py

              }
            }
          }
        }
      }
    }
    """
    
    add_comment_mutation = """
    mutation Q($discussion_id: ID!, $body: String!) {
      addDiscussionComment(input: {discussionId: $discussion_id, body: $body}) {
        comment {
          id
          url
          body
        }
      }
    }
    """
    
    update_comment_mutation = """
    mutation Q($comment_id: ID!, $body: String!) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	// for the annotation to be logged
    	PatchAuditAnnotationPrefix = "patch.webhook.admission.k8s.io/"
    	// MutationAuditAnnotationPrefix is a prefix for presisting webhook mutation existence in audit annotation.
    	MutationAuditAnnotationPrefix = "mutation.webhook.admission.k8s.io/"
    	// MutationAnnotationFailedOpenKeyPrefix in an annotation indicates
    	// the mutating webhook failed open when the webhook backend connection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                includeBuild 'included'
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Could not find org:module:1.0.")
        }
    
        def "mutation of repositories is project local"() {
            repository {
                'org:module:1.0'()
            }
    
            buildFile << """
                dependencies {
                    conf 'org:module:1.0'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/VariantMetadataAdapter.java

    import org.gradle.internal.typeconversion.NotationParser;
    
    import javax.annotation.Nullable;
    
    /**
     * Adapts a mutable module component resolve metadata instance into a form that is suitable
     * for mutation through the Gradle DSL: we don't want to expose all the resolve component
     * metadata methods, only those which make sense, and that we can reason about safely. The adapter
     * is responsible for targetting variants subject to a rule.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top