Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for withRole (0.13 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/builder_flags.go

    			Filenames: &filenames,
    			Recursive: boolPtr(true),
    		},
    	}
    }
    
    // WithFile sets the FileNameFlags.
    // If recurse is set, it will process directory recursively. Useful when you want to manage related manifests
    // organized within the same directory.
    func (o *ResourceBuilderFlags) WithFile(recurse bool, files ...string) *ResourceBuilderFlags {
    	o.FileNameFlags = &FileNameFlags{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

            if (ruleClass == TestSupplierWithService) {
                ruleServices['SomeService'] = someService
            }
            def reexecute = mustRefresh || expired
    
            when:
            withRule(ruleClass, ruleServices)
            execute(id)
    
            then:
            1 * valueSnapshotter.snapshot(_) >> inputsSnapshot
            1 * store.getIfPresent(keyHash) >> cachedEntry
            if (expired) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/PrecompiledPluginsCompileAvoidanceIntegrationTest.kt

        }
    
        private
        fun withPrecompiledScriptPluginInBuildSrc(pluginId: String, pluginSource: String) {
            withKotlinDslPluginInBuildSrc()
            withFile("buildSrc/src/main/kotlin/$pluginId.gradle.kts", pluginSource)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config/param/template.go

    		firstIdentifier := n.(*parse.FieldNode).Ident[0]
    		out.Insert(firstIdentifier)
    	case parse.NodeIf:
    		out.Merge(getParams(n.(*parse.IfNode).Pipe))
    	case parse.NodeWith:
    		out.Merge(getParams(n.(*parse.WithNode).Pipe))
    	case parse.NodeRange:
    		out.Merge(getParams(n.(*parse.RangeNode).Pipe))
    	case parse.NodeAction:
    		out.Merge(getParams(n.(*parse.ActionNode).Pipe))
    	case parse.NodeCommand:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:48 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            def reexecute = mustRefresh || expired
            def moduleSources = new MutableModuleSources()
            moduleSources.add(new ModuleDescriptorHashModuleSource(hashValue, false))
    
            when:
            withRule(ruleClass, ruleServices)
            execute(key)
    
            then:
            1 * key.getSources() >> moduleSources
            1 * key.getVariantDerivationStrategy() >> Stub(VariantDerivationStrategy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinCompilerWarningsTest.kt

                }
                $repositoriesBlock
                $compileKotlinTaskConfiguration
                """
            )
        }
    
        private
        fun withKotlinSourceFile() {
            withFile(
                "src/main/kotlin/my/Foo.kt",
                """
                package my
    
                class Foo(val bar: String)
                """
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/AccessorsClassPathModelCrossVersionSpec.groovy

        }
    
        def "jit accessors can be turned off"() {
    
            given:
            withDefaultSettings()
            withBuildScript("""
                plugins { java }
            """)
    
            and:
            withFile("gradle.properties", "org.gradle.kotlin.dsl.accessors=off")
    
            expect:
            assertThat(
                classPathFor(projectDir, buildFile),
                not(hasAccessorsClasses())
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

         *
         * The version for the hierarchy is the maximum version of all the locations in the hierarchy.
         */
        public long getVersion(VfsRelativePath relativePath, CaseSensitivity caseSensitivity) {
            return children.withNode(relativePath, caseSensitivity, new ChildMap.NodeHandler<VersionHierarchy, Long>() {
                @Override
                public Long handleAsDescendantOfChild(VfsRelativePath pathInChild, VersionHierarchy child) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/net/udpsock_posix.go

    			ip = netip.AddrFrom4(from.Addr)
    			port = from.Port
    		}
    	case syscall.AF_INET6:
    		var from syscall.SockaddrInet6
    		n, err = c.fd.readFromInet6(b, &from)
    		if err == nil {
    			ip = netip.AddrFrom16(from.Addr).WithZone(zoneCache.name(int(from.ZoneId)))
    			port = from.Port
    		}
    	}
    	if err == nil {
    		addr = netip.AddrPortFrom(ip, uint16(port))
    	}
    	return n, addr, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/text/template/parse/node.go

    }
    
    // WithNode represents a {{with}} action and its commands.
    type WithNode struct {
    	BranchNode
    }
    
    func (t *Tree) newWith(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *WithNode {
    	return &WithNode{BranchNode{tr: t, NodeType: NodeWith, Pos: pos, Line: line, Pipe: pipe, List: list, ElseList: elseList}}
    }
    
    func (w *WithNode) Copy() Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top