Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 464 for scores (0.22 sec)

  1. pkg/test/framework/components/echo/deployment/builder.go

    func build(b *builder) (out echo.Instances, err error) {
    	start := time.Now()
    	scopes.Framework.Info("=== BEGIN: Deploy echo instances ===")
    	defer func() {
    		if err != nil {
    			scopes.Framework.Error("=== FAILED: Deploy echo instances ===")
    			scopes.Framework.Error(err)
    		} else {
    			scopes.Framework.Infof("=== SUCCEEDED: Deploy echo instances in %v ===", time.Since(start))
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tests/test_security_oauth2_optional.py

                            },
                            "username": {"title": "Username", "type": "string"},
                            "password": {"title": "Password", "type": "string"},
                            "scope": {"title": "Scope", "type": "string", "default": ""},
                            "client_id": IsDict(
                                {
                                    "title": "Client Id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tests/test_security_oauth2.py

                            },
                            "username": {"title": "Username", "type": "string"},
                            "password": {"title": "Password", "type": "string"},
                            "scope": {"title": "Scope", "type": "string", "default": ""},
                            "client_id": IsDict(
                                {
                                    "title": "Client Id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tests/test_security_oauth2_optional_description.py

                            },
                            "username": {"title": "Username", "type": "string"},
                            "password": {"title": "Password", "type": "string"},
                            "scope": {"title": "Scope", "type": "string", "default": ""},
                            "client_id": IsDict(
                                {
                                    "title": "Client Id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    func entropyScore(n *Node) int64 {
    	score := float64(0)
    
    	if len(n.In) == 0 {
    		score++ // Favor entry nodes
    	} else {
    		score += edgeEntropyScore(n, n.In, 0)
    	}
    
    	if len(n.Out) == 0 {
    		score++ // Favor leaf nodes
    	} else {
    		score += edgeEntropyScore(n, n.Out, n.Flat)
    	}
    
    	return int64(score*float64(n.Cum)) + n.Flat
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.ListenerService
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.StatefulListener
    import spock.lang.Specification
    
    class DefaultListenerManagerInServiceRegistryTest extends Specification {
        def listenerManager = new DefaultListenerManager(Scope.BuildTree)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pkg/log/options.go

    	sl := scope + ":" + levelToString[level]
    	levels := strings.Split(o.defaultOutputLevels, ",")
    	if scope == DefaultScopeName {
    		// see if we have an entry without a scope prefix (which represents the default scope)
    		for i, ol := range levels {
    			if !strings.Contains(ol, ":") {
    				levels[i] = sl
    				o.defaultOutputLevels = strings.Join(levels, ",")
    				return
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/core.go

    		ClaimInformer:             controllerContext.InformerFactory.Core().V1().PersistentVolumeClaims(),
    		ClassInformer:             controllerContext.InformerFactory.Storage().V1().StorageClasses(),
    		PodInformer:               controllerContext.InformerFactory.Core().V1().Pods(),
    		NodeInformer:              controllerContext.InformerFactory.Core().V1().Nodes(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. pkg/log/config.go

    // tries to apply the result to the scopes. It supports the use of a global override.
    func processLevels(allScopes map[string]*Scope, arg string, setter func(*Scope, Level)) error {
    	levels := strings.Split(arg, ",")
    	for _, sl := range levels {
    		s, l, err := convertScopedLevel(sl)
    		if err != nil {
    			return err
    		}
    
    		if scope, ok := allScopes[s]; ok {
    			setter(scope, l)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                import org.gradle.internal.service.DefaultServiceRegistry
                import org.gradle.internal.service.scopes.GlobalScopeServices
                import org.gradle.internal.service.ServiceRegistryBuilder
                import org.gradle.internal.service.scopes.GradleUserHomeScopeServices
                import org.gradle.workers.WorkParameters
                import org.gradle.workers.WorkAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top