Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isNaked (0.11 sec)

  1. tests/integration/security/util/reachability/context.go

    										to.Config().Service,
    										opts.Port.Name,
    										opts.HTTP.Path,
    										tpe)
    
    									t.NewSubTest(subTestName).
    										Run(func(t framework.TestContext) {
    											if (from.Config().IsNaked()) && len(toClusters) > 1 {
    												// TODO use echotest to generate the cases that would work for multi-network + naked
    												t.Skip("https://github.com/istio/istio/issues/37307")
    											}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KotlinFirReferenceContributor.kt

                        )
                    }
                }
    
                registerProvider provider@{ element: KtValueArgument ->
                    if (element.isNamed()) return@provider null
                    val annotationEntry = element.getParentOfTypeAndBranch<KtAnnotationEntry> { valueArgumentList } ?: return@provider null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/runtime/mcheckmark.go

    // and otherwise sets obj's checkmark. It returns true if obj was
    // already checkmarked.
    func setCheckmark(obj, base, off uintptr, mbits markBits) bool {
    	if !mbits.isMarked() {
    		printlock()
    		print("runtime: checkmarks found unexpected unmarked object obj=", hex(obj), "\n")
    		print("runtime: found obj at *(", hex(base), "+", hex(off), ")\n")
    
    		// Dump the source (base) object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/runtime/traceallocfree.go

    			continue
    		}
    
    		// Find all allocated objects.
    		abits := s.allocBitsForIndex(0)
    		for i := uintptr(0); i < uintptr(s.nelems); i++ {
    			if abits.index < uintptr(s.freeindex) || abits.isMarked() {
    				x := s.base() + i*s.elemsize
    				trace.HeapObjectExists(x, s.typePointersOfUnchecked(x).typ)
    			}
    			abits.advance()
    		}
    	}
    
    	// Write out all the goroutine stacks.
    	forEachGRace(func(gp *g) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    	cIgnorableCased               // 101 // lower case if mappings exist
    	cXORCase                      // 11x // case is cLower | ((rune&1) ^ x)
    
    	maxCaseMode = cUpper
    )
    
    func (c info) isCased() bool {
    	return c&casedMask != 0
    }
    
    func (c info) isCaseIgnorable() bool {
    	return c&ignorableMask == ignorableValue
    }
    
    func (c info) isNotCasedAndNotCaseIgnorable() bool {
    	return c&fullCasedMask == 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/runtime/mwbbuf.go

    		if obj == 0 {
    			continue
    		}
    		// TODO: Consider making two passes where the first
    		// just prefetches the mark bits.
    		mbits := span.markBitsForIndex(objIndex)
    		if mbits.isMarked() {
    			continue
    		}
    		mbits.setMarked()
    
    		// Mark span.
    		arena, pageIdx, pageMask := pageIndexOf(span.base())
    		if arena.pageMarks[pageIdx]&pageMask == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top