Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for Managed (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            // Property is readable and without a setter of property type and getter is final, so attach owner eagerly in constructor
            // This should apply to all 'managed' types however for backwards compatibility is applied only to property types
            return property.isReadableWithoutSetterOfPropertyType() && !property.getMainGetter().shouldOverride() && hasPropertyType(property);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		return gs
    	})
    }
    
    // IsManaged checks if a Gateway is managed (ie we create the Deployment and Service) or unmanaged.
    // This is based on the address field of the spec. If address is set with a Hostname type, it should point to an existing
    // Service that handles the gateway traffic. If it is not set, or refers to only a single IP, we will consider it managed and provision the Service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	sweepgen uint32 // sweep generation, see comment in mspan; written during STW
    
    	// allspans is a slice of all mspans ever created. Each mspan
    	// appears exactly once.
    	//
    	// The memory for allspans is manually managed and can be
    	// reallocated and move as the heap grows.
    	//
    	// In general, allspans is protected by mheap_.lock, which
    	// prevents concurrent access as well as freeing the backing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    		if job != nil {
    			// Skip cleanup of finalizers for pods owned by a job managed by an external controller
    			if controllerName := managedByExternalController(job); controllerName != nil {
    				logger.V(2).Info("Skip cleanup of the job finalizer for a pod owned by a job that is managed by an external controller", "key", key, "podUID", sharedPod.UID, "jobUID", job.UID, "controllerName", controllerName)
    				return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// SetSessionTicketKeys was called on the returned Config, those keys will
    	// be used. Otherwise, the original Config keys will be used (and possibly
    	// rotated if they are automatically managed).
    	GetConfigForClient func(*ClientHelloInfo) (*Config, error)
    
    	// VerifyPeerCertificate, if not nil, is called after normal
    	// certificate verification by either a TLS client or server. It
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	//
    	// searchAddr* is always inclusive and should be the base address of the highest runtime
    	// page available for scavenging.
    	//
    	// searchAddrForce is managed by find and free.
    	// searchAddrBg is managed by find and nextGen.
    	//
    	// Normally, find monotonically decreases searchAddr* as it finds no more free pages to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /** MNG-4034 */
        @Test
        void testManagedProfileDependency() throws Exception {
            PomTestWrapper pom = this.buildPom("managed-profile-dependency/sub", "maven-core-it");
            assertEquals(1, ((List<?>) pom.getValue("dependencies")).size());
            assertEquals("org.apache.maven.its", pom.getValue("dependencies[1]/groupId"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    // of one size class, which are then managed using a free bitmap.
    //
    // The allocator's data structures are:
    //
    //	fixalloc: a free-list allocator for fixed-size off-heap objects,
    //		used to manage storage used by the allocator.
    //	mheap: the malloc heap, managed at page (8192-byte) granularity.
    //	mspan: a run of in-use pages managed by the mheap.
    //	mcentral: collects all spans of a given size class.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.template.gen.yaml

            {{- toJsonMap
              .InfrastructureLabels
              (strdict
                "gateway.networking.k8s.io/gateway-name" .Name
                "istio.io/gateway-name" .Name
                "gateway.istio.io/managed" "istio.io-mesh-controller"
              ) | nindent 4 }}
          ownerReferences:
          - apiVersion: gateway.networking.k8s.io/v1beta1
            kind: Gateway
            name: "{{.Name}}"
            uid: "{{.UID}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.template.gen.yaml

            {{- toJsonMap
              .InfrastructureLabels
              (strdict
                "gateway.networking.k8s.io/gateway-name" .Name
                "istio.io/gateway-name" .Name
                "gateway.istio.io/managed" "istio.io-mesh-controller"
              ) | nindent 4 }}
          ownerReferences:
          - apiVersion: gateway.networking.k8s.io/v1beta1
            kind: Gateway
            name: "{{.Name}}"
            uid: "{{.UID}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top