Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,411 for addKind (0.2 sec)

  1. src/cmd/internal/obj/ppc64/doc.go

    source is a memory reference, then it is a load.
    
    MOV{B,H,W,D} variations identify the size as byte, halfword, word, doubleword.
    
    Adding 'Z' to the opcode for a load indicates zero extend; if omitted it is sign extend.
    Adding 'U' to a load or store indicates an update of the base register with the offset.
    Adding 'BR' to an opcode indicates byte-reversed load or store, or the order opposite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    1. *Specify a file on the command line* with the option `-I` or `--init-script` followed by the path to the script.
    +
    The command line option can appear more than once, each time adding another init script. The build will fail if any files specified on the command line do not exist.
    2. *Put a file called `init.gradle(.kts)`* in the `__$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>__/` directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            file('gradle/javadocs/jetbrains-annotations/package-list') << ''
    
            expect:
            succeeds("javadoc")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/4841")
        def "adding custom javadoc options makes task out-of-date"() {
            given: "a javadoc task without custom options"
            buildFile << """
                task javadoc(type: Javadoc) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/InvalidPublicationChecker.java

                    "reference a platform (" + DOCUMENTATION_REGISTRY.getDocumentationRecommendationFor("platforms", "platforms") + "). " +
                    "Disable this check by adding 'dependencies-without-versions' to the suppressed validations of the " + taskPath + " task.");
            }
        }
    
        public void validateAttributes(String variant, String group, String name, AttributeContainer attributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/cache/desired_state_of_world_test.go

    	if runtime.GOOS == "windows" {
    		t.Skip("Skipping test that fails on Windows")
    	}
    
    	dsw := NewDesiredStateOfWorld()
    	socketPath := "/var/lib/kubelet/device-plugins/test-plugin.sock"
    	// Adding the plugin for the first time
    	err := dsw.AddOrUpdatePlugin(socketPath)
    	if err != nil {
    		t.Fatalf("AddOrUpdatePlugin failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/dialects.md

    Each dialect consists of a set of defined operations which have invariants
    placed on them, like: “This is a binary operator, and the inputs and outputs
    have the same types.”
    
    ## Adding to MLIR
    
    MLIR has no fixed/built-in list of globally known operations (no “intrinsics”).
    Dialects can define entirely custom types, which is how MLIR can model things
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         *
         * #### Examples
         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
         *    receives an update event.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go

    type NewInformerFunc func(versioned.Interface, time.Duration) cache.SharedIndexInformer
    
    // SharedInformerFactory a small interface to allow for adding an informer without an import cycle
    type SharedInformerFactory interface {
    	Start(stopCh <-chan struct{})
    	InformerFor(obj runtime.Object, newFunc NewInformerFunc) cache.SharedIndexInformer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 16 22:25:28 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSets.java

            }
    
            @Override
            public PatternSet create() {
                return new InternalPatternSet(patternSpecFactory);
            }
        }
    
        // This is only required to avoid adding a new public constructor to the public `PatternSet` type.
        private static class InternalPatternSet extends PatternSet {
            public InternalPatternSet(PatternSpecFactory patternSpecFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 22 23:43:14 UTC 2019
    - 2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseProjectTest.groovy

    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class EclipseProjectTest extends Specification {
    
        def eclipseProject = TestUtil.newInstance(EclipseProject, Mock(XmlFileContentMerger))
    
        def "allows adding linked resources"() {
            when:
            eclipseProject.linkedResource(name: 'foo', type: 'folder', location: '/stuff/foo')
            eclipseProject.linkedResource(name: 'bar', type: 'uri', locationUri: 'file:///stuff/bar')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top