Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for isCased (0.15 sec)

  1. tests/integration/security/pass_through_filter_chain_test.go

    								allow := allowValue(expect.mtlsSucceeds)
    								if from.Config().IsNaked() {
    									allow = allowValue(expect.plaintextSucceeds)
    								}
    
    								if allow {
    									opts.Check = check.OK()
    								} else {
    									opts.Check = check.ErrorOrStatus(http.StatusForbidden)
    								}
    
    								mtlsString := "mtls"
    								if from.Config().IsNaked() {
    									mtlsString = "plaintext"
    								}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. tests/integration/security/reachability_test.go

    			}
    		}
    		return false
    	}
    }
    
    var fromNaked condition = func(from echo.Instance, _ echo.CallOptions) bool {
    	return from.Config().IsNaked()
    }
    
    var toNaked condition = func(_ echo.Instance, opts echo.CallOptions) bool {
    	return opts.To.Config().IsNaked()
    }
    
    var toHeadless condition = func(_ echo.Instance, opts echo.CallOptions) bool {
    	return opts.To.Config().IsHeadless()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/match/matchers_test.go

    		{app: headless1, expect: false},
    		{app: naked1, expect: true},
    		{app: external1, expect: true},
    	}
    	for _, tt := range tests {
    		t.Run(tt.app.Config().Service, func(t *testing.T) {
    			if got := tt.app.Config().IsNaked(); got != tt.expect {
    				t.Errorf("got %v expected %v", got, tt.expect)
    			}
    		})
    	}
    }
    
    var _ echo.Instance = fakeInstance{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/match/matchers.go

    var NotExternal = Not(External)
    
    // Naked matches instances with any subset marked with SidecarInject equal to false.
    var Naked Matcher = func(i echo.Instance) bool {
    	return i.Config().IsNaked()
    }
    
    // AllNaked matches instances where every subset has SidecarInject set to false.
    var AllNaked Matcher = func(i echo.Instance) bool {
    	return i.Config().IsAllNaked()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	if protectionutil.IsDeletionCandidate(pvc, volumeutil.PVCProtectionFinalizer) {
    		// PVC should be deleted. Check if it's used and remove finalizer if
    		// it's not.
    		isUsed, err := c.isBeingUsed(ctx, pvc)
    		if err != nil {
    			return err
    		}
    		if !isUsed {
    			return c.removeFinalizer(ctx, pvc)
    		}
    		logger.V(2).Info("Keeping PVC because it is being used", "PVC", klog.KObj(pvc))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/filters.go

    		match.NotWaypoint,
    	)
    }
    
    // reachableFromNaked filters out all virtual machines and any instance that isn't on the same network
    func reachableFromNaked(from echo.Instance) match.Matcher {
    	if !from.Config().IsNaked() {
    		return match.Any
    	}
    	return match.And(
    		match.Network(from.Config().Cluster.NetworkName()),
    		match.NotVM)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    			// mtlsOnExpect defines our expectations for when mTLS is expected when its enabled
    			mtlsOnExpect := func(from echo.Instance, opts echo.CallOptions) bool {
    				if from.Config().IsNaked() || opts.To.Config().IsNaked() {
    					// If one of the two endpoints is naked, we don't send mTLS
    					return false
    				}
    				if opts.To.Config().IsHeadless() && opts.To.Instances().Contains(from) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            for (CustomInjectAnnotationPropertyHandler handler : customAnnotationPropertyHandlers) {
                if (handler.isUsed()) {
                    annotationsTriggeringServiceInjection.add(handler.getAnnotation());
                }
            }
    
            // This is expensive to calculate, so cache the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    performSelection(resolveState, module);
                }
                if (dependency.isUsed()) {
                    // Some corner case result in the edge being removed, in that case it needs to be "removed"
                    module.addUnattachedDependency(dependency);
                }
                processed = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top