Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for isCased (0.61 sec)

  1. 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)
  2. 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)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Range.groovy

    class Range {
        private final long millis
    
        Range(long millis) {
            this.millis = millis
        }
    
        @Override
        String toString() {
            return "[approx $millis millis]"
        }
    
        boolean isCase(Duration duration) {
            def actualMillis = duration.millis
            return actualMillis > millis - 500 && actualMillis < millis + 2000
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. pkg/controller/volume/pvprotection/pv_protection_controller.go

    		return err
    	}
    
    	if protectionutil.IsDeletionCandidate(pv, volumeutil.PVProtectionFinalizer) {
    		// PV should be deleted. Check if it's used and remove finalizer if
    		// it's not.
    		isUsed := c.isBeingUsed(pv)
    		if !isUsed {
    			return c.removeFinalizer(ctx, pv)
    		}
    		logger.V(4).Info("Keeping PV because it is being used", "PV", klog.KRef("", pvName))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
Back to top