Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 661 for addLink (0.38 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. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    // the new line is added after the block containing hint
    // (or hint itself, if not in a block).
    //
    // If no hint is provided, addLine appends the line to the end of
    // the last block with a matching first token,
    // or to the end of the file if no such block exists.
    func (x *FileSyntax) addLine(hint Expr, tokens ...string) *Line {
    	if hint == nil {
    		// If no hint given, add to the last statement of the given type.
    	Loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

    import org.gradle.api.artifacts.repositories.IvyArtifactRepository;
    import org.gradle.api.artifacts.repositories.MavenArtifactRepository;
    import org.gradle.declarative.dsl.model.annotations.Adding;
    import org.gradle.internal.HasInternalProtocol;
    
    import java.util.Map;
    
    /**
     * A {@code RepositoryHandler} manages a set of repositories, allowing repositories to be defined and queried.
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/values.yaml

        # Default node selector to be applied to all deployments so that all pods can be
        # constrained to run a particular nodes. Each component can overwrite these default
        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
        defaultNodeSelector: {}
    
        # enable pod disruption budget for the control plane, which is used to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. 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)
  6. guava/src/com/google/common/collect/Multimap.java

     *
     * <p>Multimaps are commonly used in places where a {@code Map<K, Collection<V>>} would otherwise
     * have appeared. The differences include:
     *
     * <ul>
     *   <li>There is no need to populate an empty collection before adding an entry with {@link #put
     *       put}.
     *   <li>{@code get} never returns {@code null}, only an empty collection.
     *   <li>A key is contained in the multimap if and only if it maps to at least one value. Any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. docs/site-replication/run-multi-site-minio-idp.sh

    fi
    
    ./mc admin user svcacct add minio2 foobar --access-key testsvc --secret-key testsvc123
    if [ $? -ne 0 ]; then
    	echo "adding svc account failed, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct add minio2 minio --access-key testsvc2 --secret-key testsvc123
    if [ $? -ne 0 ]; then
    	echo "adding root svc account testsvc2 failed, exiting.."
    	exit_1
    fi
    
    sleep 10
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java

        }
      }
    
      /** Test equalObjects after adding multiple instances at once with a null */
      public void testAddTwoEqualObjectsAtOnceWithNull() {
        try {
          equalsTester.addEqualityGroup(reference, equalObject1, null);
          fail("Should fail on null equal object");
        } catch (NullPointerException e) {
        }
      }
    
      /** Test adding null equal object yields error */
      public void testAddNullEqualObject() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                tasks.create<CustomTask>("myTask", "hello", 42)
            """
    
            when:
            run 'myTask'
    
            then:
            outputContains('hello 42')
        }
    
        def "throws exception when adding a pre-created task to the task container"() {
            given:
            buildFile << """
                Task foo = tasks.create("foo")
    
                tasks.add(new Bar("bar", foo))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    Adding a variant is then very simple:
    
    .Adding a variant to an existing software component
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top