Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 287 for emberi (0.56 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			if overloadId == "cidr_ip" {
    				// The IP member of the CIDR object is just accessing a field.
    				// Nominal cost.
    				return &checker.CallEstimate{CostEstimate: checker.CostEstimate{Min: 1, Max: 1}}
    			}
    
    			sz := l.sizeEstimate(args[0])
    			return &checker.CallEstimate{CostEstimate: sz.MultiplyByCostFactor(common.StringTraversalCostFactor)}
    		} else if target != nil {
    			// The IP member of a CIDR is a just accessing a field, nominal cost.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

                if (declaredSymbols.isNotEmpty()) {
                    return declaredSymbols
                }
    
                // Fake overrides are absent in the declared member scope
                return classSymbol.getCombinedMemberScope()
                    .getCallableSymbols(callableId.callableName)
                    .filter { it.getContainingSymbol() == classSymbol }
                    .toList()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    	// yet set any policy
    	uClient := s.getUserClient(c, accessKey, secretKey, "")
    	c.mustNotListObjects(ctx, uClient, bucket)
    
    	err = s.adm.UpdateGroupMembers(ctx, madmin.GroupAddRemove{
    		Group:   "test-group",
    		Members: []string{accessKey},
    	})
    	if err != nil {
    		c.Fatalf("unable to add user to group: %v", err)
    	}
    
    	err = s.adm.SetPolicy(ctx, policy, "test-group", true)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  4. src/runtime/type.go

    		racerelease(unsafe.Pointer(&reflectOffs.lock))
    	}
    	unlock(&reflectOffs.lock)
    }
    
    // resolveNameOff should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname resolveNameOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                ).flatMap(Function.identity());
    
                return ownerAndSupertypes.anyMatch(classInHierarchy ->
                    findMatchingCallableMember(classInHierarchy, input)
                        .map(member -> member.isAnnotatedWith(predicate))
                        .orElse(false)
                );
            }
    
            private Optional<? extends JavaMember> findMatchingCallableMember(JavaClass owner, JavaMember memberToFind) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

            """
    
            when:
            runAndFail 'sample, --hello', 'test'
    
            then:
            failureCauseContains('Cannot specify duplicate annotation on the same member : org.gradle.api.tasks.options.Option')
        }
    
        @ToBeFixedForIsolatedProjects(because = "Configuring projects from root")
        def "different tasks match name but only one accepts the option"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

         */
        @Test
        @Issue("https://youtrack.jetbrains.com/issue/KT-55542")
        @ToBeImplemented
        fun `nullable type parameters on non-nullable member works without disabling Koltlin type enhancement improvements in strict mode`() {
            withBuildScript("""
                import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    
                plugins { `embedded-kotlin` }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package stringintconv
    
    import (
    	_ "embed"
    	"fmt"
    	"go/ast"
    	"go/types"
    	"strings"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/inspector"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        }
    
        /**
         * Tells whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        @Console
        public boolean isDeprecation() {
            return deprecation;
        }
    
        /**
         * Sets whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        public void setDeprecation(boolean deprecation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/net/dnsclient.go

    // SRV-like "underscore labels"; see golang.org/issue/12421).
    //
    // isDomainName should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname isDomainName
    func isDomainName(s string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top