Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 for owner1 (0.25 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.attachProducer(owner(task))
    
            assertHasProducer(filtered, task)
            filtered.calculateExecutionTimeValue().isMissing()
        }
    
        def "fails when property has multiple producers attached"() {
            def owner1 = owner()
            owner1.modelIdentityDisplayName >> displayName("<owner 1>")
            def owner2 = owner()
            owner2.modelIdentityDisplayName >> displayName("<owner 2>")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - neolit123
      - SataQiu
      - pacoxu
      - chendave
    reviewers:
      - neolit123
      - SataQiu
      - pacoxu
      - chendave
      - carlory
    emeritus_approvers:
      - fabriziopandini
      - luxas
      - timothysc
      - rosti
      - ereslibre
    labels:
      - area/kubeadm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 14:07:57 UTC 2024
    - 324 bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-cli-maintainers
    reviewers:
      - sig-cli-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 19:57:37 UTC 2024
    - 139 bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	})
    	ownerA := v1.Pod{}
    	ownerA.SetUID("123")
    	ownerA.Name = "bob"
    	ownerB := v1.Pod{}
    	ownerB.Name = "shirley"
    	ownerB.SetUID("789")
    	ownerC := v1.Pod{}
    	ownerC.Name = "yvonne"
    	ownerC.SetUID("345")
    	if hasStaleOwnerRef(&target, &ownerA, podKind) {
    		t.Error("ownerA should not be stale")
    	}
    	if !hasStaleOwnerRef(&target, &ownerB, podKind) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups.golden

    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.golden

    iptables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner ftp -j RETURN
    ip6tables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner ftp -j RETURN
    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups.golden

    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner ! --gid-owner java -m owner ! --gid-owner 202 -j RETURN
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 888 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner ftp -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            DefaultVintageGradleBuild(gradle.owner)
    
        override fun visitBuilds(visitor: (VintageGradleBuild) -> Unit) {
            service<BuildStateRegistry>().visitBuilds { build ->
                visitor(DefaultVintageGradleBuild(build))
            }
        }
    
        override fun createBuild(settingsFile: File?): ConfigurationCacheBuild =
            DefaultConfigurationCacheBuild(gradle.owner, service(), service(), settingsFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tests/joins_test.go

    	type (
    		Furniture struct {
    			gorm.Model
    			OwnerID *uint
    		}
    
    		Owner struct {
    			gorm.Model
    			Furnitures []Furniture
    			CompanyID  *uint
    			Company    Company
    		}
    
    		Building struct {
    			gorm.Model
    			Name    string
    			OwnerID *uint
    			Owner   Owner
    		}
    	)
    
    	DB.Migrator().DropTable(&Building{}, &Owner{}, &Furniture{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top