Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 125 for sresource (0.34 sec)

  1. tests/integration/ambient/cnirepair/main_test.go

    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMinVersion(24).
    		Label(label.IPv4). // https://github.com/istio/istio/issues/41008
    		Setup(func(t resource.Context) error {
    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    		},
    	}
    }
    
    func (c *CaCertificateAnalyzer) Analyze(ctx analysis.Context) {
    	ctx.ForEach(gvk.DestinationRule, func(r *resource.Instance) bool {
    		c.analyzeDestinationRule(r, ctx)
    		return true
    	})
    }
    
    func (c *CaCertificateAnalyzer) analyzeDestinationRule(r *resource.Instance, ctx analysis.Context) {
    	dr := r.Message.(*v1alpha3.DestinationRule)
    	drNs := r.Metadata.FullName.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/main_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/components/prometheus"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	i istio.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

         * TransformReplacer throws upon opening a multi-release JAR without the marker resource.
         */
        public enum MarkerResource {
            // The transformed marker resource is an empty file to reduce archive size in the most common case.
            TRANSFORMED(new byte[0]),
            // Not transformed marker resource is a 1-byte file with a single "N" symbol.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    	oldJSON, err := json.Marshal(oldRes)
    	if err != nil {
    		return nil, fmt.Errorf("failed marhsalling original resource: %v", err)
    	}
    	newJSON, err := json.Marshal(modRes)
    	if err != nil {
    		return nil, fmt.Errorf("failed marhsalling modified resource: %v", err)
    	}
    	switch patchType {
    	case types.JSONPatchType:
    		ops, err := jsonpatch.CreatePatch(oldJSON, newJSON)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	}
    
    	resources := make([]api.ResourceName, 0, len(resourceQuota.Status.Hard))
    	for resource := range resourceQuota.Status.Hard {
    		resources = append(resources, resource)
    	}
    	sort.Sort(SortableResourceNames(resources))
    
    	requestColumn := bytes.NewBuffer([]byte{})
    	limitColumn := bytes.NewBuffer([]byte{})
    	for i := range resources {
    		w := requestColumn
    		resource := resources[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

    import org.gradle.internal.extensions.core.add
    import org.gradle.internal.nativeintegration.filesystem.FileSystem
    import org.gradle.internal.resource.connector.ResourceConnectorFactory
    import org.gradle.internal.resource.connector.ResourceConnectorSpecification
    import org.gradle.internal.resource.transfer.ExternalResourceConnector
    import org.gradle.internal.service.Provides
    import org.gradle.internal.service.ServiceRegistration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            'a string'         | 'fromString("content")'
            'a file'           | 'fromFile("resource.txt")'
            'an uri'           | 'fromUri(project.uri(project.file("resource.txt")))'
            'an insecure uri'  | 'fromInsecureUri(project.uri(project.file("resource.txt")))'
            'an archive entry' | 'fromArchiveEntry("resource.zip", "resource.txt")'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/22255')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                URL resource = WorkerProcessClassPathProvider.class.getClassLoader().getResource(resourceName);
                if (resource == null) {
                    throw new IllegalStateException("Could not locate classpath resource for class " + classToMap.getName());
                }
                InputStream inputStream = resource.openStream();
                ClassReader classReader;
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    		// Built-in user should be imported without errors even if LDAP is
    		// enabled.
    		allUsersFile: `{
      "foo": {
        "secretKey": "foobar123",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top