Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,389 for addLink (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRuleContainer.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import java.util.Map;
    import java.util.Set;
    
    /**
     * <p>A container for adding exclude rules for dependencies.</p>
     */
    public interface ExcludeRuleContainer {
        /**
         * Returns all the exclude rules added to this container. If no exclude rules has been added an empty list is
         * returned.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public abstract class AbstractMultisetSetCountTester<E> extends AbstractMultisetTester<E> {
      /*
       * TODO: consider adding MultisetFeatures.SUPPORTS_SET_COUNT. Currently we
       * assume that using setCount() to increase the count is permitted iff add()
       * is permitted and similarly for decrease/remove(). We assume that a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/global-dependencies.md

        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="15"
        {!> ../../../docs_src/dependencies/tutorial012.py!}
        ```
    
    And all the ideas in the section about [adding `dependencies` to the *path operation decorators*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} still apply, but in this case, to all of the *path operations* in the app.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/inittask.go

    		sb := ldr.MakeSymbolUpdater(sh)
    		sb.SetSize(0)
    		sb.SetType(sym.SNOPTRDATA) // Could be SRODATA, but see issue 58857.
    		sb.AddAddr(ctxt.Arch, t)
    		sb.AddUint(ctxt.Arch, uint64(ldr.SymSize(t)/int64(ctxt.Arch.PtrSize)))
    		sb.AddUint(ctxt.Arch, uint64(ldr.SymSize(t)/int64(ctxt.Arch.PtrSize)))
    	}
    }
    
    // inittaskSym builds a symbol containing pointers to all the inittasks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/ConfigurationReportsImpl.java

    import org.gradle.api.tasks.diagnostics.configurations.ConfigurationReports;
    
    import javax.inject.Inject;
    
    /**
     * Default implementation of {@link ConfigurationReports} which allows for adding and configuring reports.
     *
     * Class must by non-{@code final}.
     */
    public class ConfigurationReportsImpl extends TaskReportContainer<ConfigurableReport> implements ConfigurationReports {
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 21:08:41 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

            then:
            output.indexOf('initscript2!') < output.indexOf('initscript1!')
            configurationCache.assertStateStored()
        }
    
        def "invalidates cache upon adding init script to command line"() {
    
            given:
            def initScript1 = file('initscript1.gradle.kts').tap {
                text = 'println("initscript1!")'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_lazy_import_allmod.txt

    # and the dependency on c is eagerly loaded.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    go list -m all
    stdout '^a v0.1.0 '
    stdout '^b v0.1.0 '
    stdout '^c v0.1.0 '
    
    # After adding a new import of b/y,
    # the import of c from b/y should resolve to the version required by b.
    
    cp m.go m.go.orig
    cp m.go.new m.go
    go mod tidy
    cmp go.mod.new go.mod
    
    go list -m all
    stdout '^a v0.1.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue19275.go

    }
    
    //go:noinline
    func (s *SI) test(name string) (*int, error) {
    	n := new(int)
    	*n = 99
    	if err := addUpdate(n, s.M[name].Enabled, "enabled"); err != nil { // this was miscompiled
    		return nil, fmt.Errorf(" error adding update for enable flag %t : %s",
    			s.M[name].Enabled, err)
    	}
    	return n, nil
    }
    
    //go:noinline
    func addUpdate(n *int, in interface{}, s ...string) error {
    	if *n != 99 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 25 04:53:23 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BlockStore.java

        
        /**
         * Reads a block from this store.
         */
        <T extends BlockPayload> T read(BlockPointer pos, Class<T> payloadType);
    
        /**
         * Writes a block to this store, adding the block if required.
         */
        void write(BlockPayload block);
    
        /**
         * Adds a new block to this store. Allocates space for the block, but does not write the contents of the block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top