Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,141 for Owner (0.04 sec)

  1. cni/pkg/plugin/testdata/status-ports.txt.golden

    -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    -A ISTIO_OUTPUT -o lo -m owner ! --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 13 23:37:21 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/ipnets.golden

    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --gid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/MethodMetaDataTest.groovy

            then:
            m == null
            _ * owner.superClass >> null
            _ * owner.interfaces >> []
        }
    
        def hasNoOverriddenMethodWhenMethodDoesNotOverrideMethodInSuperClass() {
            ClassMetaData superClassMetaData = Mock()
    
            when:
            def m = method.overriddenMethod
    
            then:
            m == null
            _ * owner.superClass >> superClassMetaData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.6K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/testdata/inbound-ports-tproxy.golden

    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --gid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/KtKeywordRenderer.kt

            printer.printCollection(applicableKeywords, separator = " ") {
                renderKeyword(analysisSession, it, owner, keywordsRenderer, this)
            }
        }
    
        public object AS_WORD : KaKeywordRenderer {
            override fun renderKeyword(
                analysisSession: KaSession,
                keyword: KtKeywordToken,
                owner: KaAnnotated,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. tests/test_jsonable_encoder.py

            "name": "Firulais",
            "owner": {"name": "Foo"},
        }
    
    
    def test_encode_class():
        person = Person(name="Foo")
        pet = Pet(owner=person, name="Firulais")
        assert jsonable_encoder(pet) == {"name": "Firulais", "owner": {"name": "Foo"}}
        assert jsonable_encoder(pet, include={"name"}) == {"name": "Firulais"}
        assert jsonable_encoder(pet, exclude={"owner"}) == {"name": "Firulais"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodDescription.java

        }
    
        public MethodDescription returns(Type returnType) {
            this.returnType = typeName(returnType);
            return this;
        }
    
        public MethodDescription owner(Class<?> owner) {
            this.owner = typeName(owner);
            return this;
        }
    
        public MethodDescription takes(Type[] parameterTypes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/FailOnVersionConflictGraphVisitor.java

            DependencyGraphComponent owner = node.getOwner();
            ComponentSelectionReason selectionReason = owner.getSelectionReason();
            if (selectionReason.isConflictResolution()) {
                allConflicts.add(buildConflict(owner, selectionReason));
            }
        }
    
        private static Conflict buildConflict(DependencyGraphComponent owner, ComponentSelectionReason selectionReason) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            given:
            writeLockFile(["invalid"], unique)
    
            when:
            provider.loadLockState('conf', owner)
    
            then:
            def ex = thrown(InvalidLockFileException)
            1 * owner.getDisplayName() >> "owner"
            ex.message == 'Invalid lock state for owner'
            ex.cause.message == 'The module notation does not respect the lock file format of \'group:name:version\' - received \'invalid\''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/controller_ref.go

    	}
    	return nil
    }
    
    // NewControllerRef creates an OwnerReference pointing to the given owner.
    func NewControllerRef(owner Object, gvk schema.GroupVersionKind) *OwnerReference {
    	return &OwnerReference{
    		APIVersion:         gvk.GroupVersion().String(),
    		Kind:               gvk.Kind,
    		Name:               owner.GetName(),
    		UID:                owner.GetUID(),
    		BlockOwnerDeletion: ptr.To(true),
    		Controller:         ptr.To(true),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 05:14:33 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top