Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for withRole (0.14 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

        @Test
        fun `should report binary incompatibility for upgraded property without any metadata`() {
            checkNotBinaryCompatible(
                v1 = {
                    withFile(
                        "java/com/example/Task.java",
                        """
                            package com.example;
    
                            public abstract class Task {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            resolve(path).apply {
                mkdirs()
            }
    
        private
        fun File.withSettings(text: String = ""): File =
            withFile("settings.gradle.kts", text)
    
        private
        fun File.withBuildScript(text: String = ""): File =
            withFile("build.gradle.kts", text)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                "Project"
            )
        }
    
        private
        fun assertSucceedsForScriptWithReceiver(fileName: String, receiverType: String) {
            assertSucceeds(
                withFile(fileName, requiringImplicitReceiverOf(receiverType))
            )
        }
    
        private
        fun requiringImplicitReceiverOf(type: String) = """
            val $type.implicitReceiver get() = this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

            // given: same init, settings & build files all applying same script
            val same = withFile("same.gradle.kts", """println("Same script on ${'$'}this")""")
            val sameApply = """apply(from = "same.gradle.kts")"""
            val initScriptFile = withFile("same.init.gradle.kts", sameApply)
    
            val initializationFile = cachedInitializationFile(initScriptFile, false, true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    func (ip Addr) Unmap() Addr {
    	if ip.Is4In6() {
    		ip.z = z4
    	}
    	return ip
    }
    
    // WithZone returns an IP that's the same as ip but with the provided
    // zone. If zone is empty, the zone is removed. If ip is an IPv4
    // address, WithZone is a no-op and returns ip unchanged.
    func (ip Addr) WithZone(zone string) Addr {
    	if !ip.Is6() {
    		return ip
    	}
    	if zone == "" {
    		ip.z = z6noz
    		return ip
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/volume_manager_test.go

    	}
    	fakeRecorder := &record.FakeRecorder{}
    	plugMgr := &volume.VolumePluginMgr{}
    	// TODO (#51147) inject mock prober
    	fakeVolumeHost := volumetest.NewFakeKubeletVolumeHost(t, tmpDir, kubeClient, nil)
    	fakeVolumeHost.WithNode(node)
    
    	plugMgr.InitPlugins([]volume.VolumePlugin{attachablePlug, unattachablePlug}, nil /* prober */, fakeVolumeHost)
    	stateProvider := &fakePodStateProvider{}
    	fakePathHandler := volumetest.NewBlockVolumePathHandler()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            val performanceTest = project.tasks.register(name, PerformanceTest::class) {
                group = "verification"
                buildId = System.getenv("BUILD_ID") ?: "localBuild-${ofPattern("yyyyMMddHHmmss").withZone(systemDefault()).format(now())}"
                reportDir = project.layout.buildDirectory.file("${this.name}/${Config.performanceTestReportsDir}").get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. pkg/volume/testing/volume_host.go

    	if err := host.WaitForKubeletErrNil(); err != nil {
    		t.Fatalf("Failed to wait for kubelet err to be nil while creating fake volume host: %v", err)
    	}
    	return host
    }
    
    func (f *fakeKubeletVolumeHost) WithNode(node *v1.Node) *fakeKubeletVolumeHost {
    	f.node = node
    	return f
    }
    
    type CSINodeLister []storagev1.CSINode
    
    // Get returns a fake CSINode object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. src/net/tcpsock.go

    //
    // If a is nil, a zero value is returned.
    func (a *TCPAddr) AddrPort() netip.AddrPort {
    	if a == nil {
    		return netip.AddrPort{}
    	}
    	na, _ := netip.AddrFromSlice(a.IP)
    	na = na.WithZone(a.Zone)
    	return netip.AddrPortFrom(na, uint16(a.Port))
    }
    
    // Network returns the address's network name, "tcp".
    func (a *TCPAddr) Network() string { return "tcp" }
    
    func (a *TCPAddr) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    		s.walkRange(dot, node)
    	case *parse.TemplateNode:
    		s.walkTemplate(dot, node)
    	case *parse.TextNode:
    		if _, err := s.wr.Write(node.Text); err != nil {
    			s.writeError(err)
    		}
    	case *parse.WithNode:
    		s.walkIfOrWith(parse.NodeWith, dot, node.Pipe, node.List, node.ElseList)
    	default:
    		s.errorf("unknown node: %s", node)
    	}
    }
    
    // walkIfOrWith walks an 'if' or 'with' node. The two control structures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top