Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for someConf (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        assert unresolved.size() == 0
    
                        LenientConfiguration someConf = configurations.someConf.resolvedConfiguration.lenientConfiguration
    
                        unresolved = someConf.getUnresolvedModuleDependencies()
                        resolved = someConf.getFirstLevelModuleDependencies(Specs.SATISFIES_ALL)
    
                        assert resolved.size() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        foo
                        bar
                        someConf {
                            canBeConsumed = false
                        }
                    }
                    ${fooAndBarJars()}
                }
            """
    
            when:
            fails ':a:checkDebug'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    + "\nIt can be specified from the command line, e.g: '" + getPath() + " --configuration someConf --dependency someDep'");
            }
    
            if (getDependencySpec() == null) {
                throw new InvalidUserDataException("Dependency insight report cannot be generated because the dependency to show was not specified."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

            configurationsProvider.findByName('conf-2') >> resolvable()
    
            def root = builder.toRootComponent('conf')
    
            when:
            def sameConf = builder.toRootComponent('conf')
    
            then:
            sameConf.rootComponent.is(root.rootComponent)
            sameConf.rootComponent.metadata.is(root.rootComponent.metadata)
    
            when:
            def differentConf = builder.toRootComponent('conf-2')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

        injectedAnnotations:
          {{- range $key, $val := .Values.sidecarInjectorWebhook.injectedAnnotations }}
          "{{ $key }}": {{ $val | quote }}
          {{- end }}
        {{- /* If someone ends up with this new template, but an older Istiod image, they will attempt to render this template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

        injectedAnnotations:
          {{- range $key, $val := .Values.sidecarInjectorWebhook.injectedAnnotations }}
          "{{ $key }}": {{ $val | quote }}
          {{- end }}
        {{- /* If someone ends up with this new template, but an older Istiod image, they will attempt to render this template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. doc/next/9-todo.md

    <!-- These items need to be reviewed, and mentioned in the Go 1.23 release notes if applicable.
    
    None right now; more may come up later on.
    -->
    
    <!-- Maybe should be documented? Maybe shouldn't? Someone familiar with the change needs to determine.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/internal/runtime/exithook/hooks.go

    package exithook
    
    import (
    	"internal/runtime/atomic"
    	_ "unsafe" // for linkname
    )
    
    // A Hook is a function to be run at program termination
    // (when someone invokes os.Exit, or when main.main returns).
    // Hooks are run in reverse order of registration:
    // the first hook added is the last one run.
    type Hook struct {
    	F            func() // func to run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/runtime/traceregion.go

    		if r <= uintptr(len(block.data)) {
    			return (*notInHeap)(unsafe.Pointer(&block.data[r-n]))
    		}
    	}
    
    	// Try to install a new block.
    	lock(&a.lock)
    
    	// Check block again under the lock. Someone may
    	// have gotten here first.
    	block = (*traceRegionAllocBlock)(a.current.Load())
    	if block != nil {
    		r := block.off.Add(n)
    		if r <= uintptr(len(block.data)) {
    			unlock(&a.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/unique/handle.go

    	*concurrent.HashTrieMap[T, weak.Pointer[T]]
    	cloneSeq
    }
    
    func addUniqueMap[T comparable](typ *abi.Type) *uniqueMap[T] {
    	// Create a map for T and try to register it. We could
    	// race with someone else, but that's fine; it's one
    	// small, stray allocation. The number of allocations
    	// this can create is bounded by a small constant.
    	m := &uniqueMap[T]{
    		HashTrieMap: concurrent.NewHashTrieMap[T, weak.Pointer[T]](),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top