Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,141 for Owner (0.04 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TypeSanitizingTransformer.java

    class TypeSanitizingTransformer<T> implements Transformer<T, T> {
        private final DisplayName owner;
        private final ValueSanitizer<? super T> sanitizer;
        private final Class<? super T> targetType;
    
        public TypeSanitizingTransformer(DisplayName owner, ValueSanitizer<? super T> sanitizer, Class<? super T> targetType) {
            this.owner = owner;
            this.sanitizer = sanitizer;
            this.targetType = targetType;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--uid-owner", uid, "-j", constants.RETURN)
    	}
    	for _, gid := range split(proxyGID) {
    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--gid-owner", gid, "-j", constants.RETURN)
    	}
    
    	if ownerGroupsFilter.Except {
    		for _, group := range ownerGroupsFilter.Values {
    			f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--gid-owner", group, "-j", constants.RETURN)
    		}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationListRenderer.kt

            ) {
                val annotations = owner.annotations
                    .filter { annotationRenderer.annotationFilter.filter(analysisSession, it, owner) }
                    .ifEmpty { return }
    
                printer.printCollection(
                    annotations,
                    separator = when (owner) {
                        is KaValueParameterSymbol -> " "
                        is KaDeclarationSymbol -> "\n"
                        else -> " "
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. tests/test_response_model_data_filter_no_inheritance.py

        )
        pet = PetDB(name="Nibbler", owner=user)
        return pet
    
    
    @app.get("/pets/", response_model=List[PetOut])
    async def read_pets():
        user = UserDB(
            email="******@****.***",
            hashed_password="secrethashed",
        )
        pet1 = PetDB(name="Nibbler", owner=user)
        pet2 = PetDB(name="Zoidberg", owner=user)
        return [pet1, pet2]
    
    
    client = TestClient(app)
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. cluster/gce/gci/master.yaml

        permissions: 0644
        owner: root
        content: |
          [Unit]
          Description=kube-logrotate invocation
    
          [Timer]
          OnCalendar=*-*-* *:00/5:00
    
          [Install]
          WantedBy=kubernetes.target
    
      - path: /etc/systemd/system/kube-logrotate.service
        permissions: 0644
        owner: root
        content: |
          [Unit]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/EndPointQueue.java

        private final List<InterHubMessage> queue = new ArrayList<InterHubMessage>();
        private final MultiEndPointQueue owner;
        private final Condition condition;
    
        public EndPointQueue(MultiEndPointQueue owner, Condition condition) {
            this.owner = owner;
            this.condition = condition;
        }
    
        @Override
        public void dispatch(InterHubMessage message) {
            queue.add(message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * <ul>
     *     <li>OWNER (user) permissions: what actions the owner of the file/directory can perform on the file/directory</li>
     *     <li>GROUP permissions: what actions a user, who is a member of the group that a file/directory belongs to, can perform on the file/directory</li>
     *     <li>OTHER (world) permissions: what actions all other users (non-owner, non-group) can perform on the file/directory</li>
     * </ul>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/LockCache.java

        private final ResourceLockCoordinationService coordinationService;
        private final ResourceLockContainer owner;
    
        public LockCache(ResourceLockCoordinationService coordinationService, ResourceLockContainer owner) {
            this.coordinationService = coordinationService;
            this.owner = owner;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodDescriptionTest.groovy

            MethodDescription.name("a").returns(String).owner(String).takes().toString() == "java.lang.String java.lang.String#a()"
            MethodDescription.name("a").returns(String).owner(String).takes(String).toString() == "java.lang.String java.lang.String#a(java.lang.String)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/helper/spread.go

    		}
    	}
    	selector := labelSet.AsSelector()
    
    	owner := metav1.GetControllerOfNoCopy(pod)
    	if owner == nil {
    		return selector
    	}
    
    	gv, err := schema.ParseGroupVersion(owner.APIVersion)
    	if err != nil {
    		return selector
    	}
    
    	gvk := gv.WithKind(owner.Kind)
    	switch gvk {
    	case rcKind:
    		if rc, err := cl.ReplicationControllers(pod.Namespace).Get(owner.Name); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 20:04:48 UTC 2021
    - 3.4K bytes
    - Viewed (0)
Back to top