Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,161 for scouse (0.08 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

            fullyPrintScope: (KaScopeKind) -> Boolean,
        ) {
            for (scopeWithKind in scopeContext.scopes) {
                renderForTests(scopeWithKind.scope, scopeWithKind.kind, printer, printPretty, fullyPrintScope)
                printer.appendLine()
            }
        }
    
        private fun KaSession.renderForTests(
            scope: KaScope,
            scopeKind: KaScopeKind,
            printer: PrettyPrinter,
            printPretty: Boolean,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // scope A creates the conjunction of the scopes A and B (i.e, A & B) and,
    // in effect, the node gets both the old and new scopes.  As a unique scope
    // disallows a node being merged with nodes in other scopes, the scope
    // conjunction preserves the semantic of the old scope (i.e., the node still
    // cannot be merged with the previously incompatible nodes.)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaModuleFixture.groovy

                }  : "No module '$name' with scope $scope found in ${modules*.moduleName}"
            }
    
            void assertHasLibrary(String scope = 'COMPILE', String name) {
                assert libraries.any { ImlModuleLibrary it ->
                    it.scope == scope && it.url.contains(name)
                }  : "No library '$name' with scope $scope found in ${libraries*.url}"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10ScopeResolution.kt

    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    import org.jetbrains.kotlin.analysis.api.scopes.KaScopeNameFilter
    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaPossiblyNamedSymbol
    import org.jetbrains.kotlin.descriptors.ConstructorDescriptor
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.resolve.scopes.*
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/OutputChangeListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @EventScope(Scope.Build.class)
    @ServiceScope(Scope.Gradle.class)
    public interface OutputChangeListener {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. docs_src/security/tutorial005_an_py310.py

            token_scopes = payload.get("scopes", [])
            token_data = TokenData(scopes=token_scopes, username=username)
        except (InvalidTokenError, ValidationError):
            raise credentials_exception
        user = get_user(fake_users_db, username=token_data.username)
        if user is None:
            raise credentials_exception
        for scope in security_scopes.scopes:
            if scope not in token_data.scopes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. docs_src/security/tutorial005_an_py39.py

            token_scopes = payload.get("scopes", [])
            token_data = TokenData(scopes=token_scopes, username=username)
        except (InvalidTokenError, ValidationError):
            raise credentials_exception
        user = get_user(fake_users_db, username=token_data.username)
        if user is None:
            raise credentials_exception
        for scope in security_scopes.scopes:
            if scope not in token_data.scopes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	var maxCount int64 = math.MinInt64
    	for i := range scores {
    		score := scores[i].Score
    		if score > maxCount {
    			maxCount = score
    		}
    		if score < minCount {
    			minCount = score
    		}
    	}
    
    	maxMinDiff := maxCount - minCount
    	for i := range scores {
    		fScore := float64(0)
    		if maxMinDiff > 0 {
    			fScore = float64(framework.MaxNodeScore) * (float64(scores[i].Score-minCount) / float64(maxMinDiff))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/ClassPathRegistry.java

     */
    
    package org.gradle.api.internal;
    
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope({Scope.Global.class, Scope.UserHome.class, Scope.Build.class})
    public interface ClassPathRegistry {
        ClassPath getClassPath(String name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 962 bytes
    - Viewed (0)
  10. istioctl/pkg/admin/istiodconfig.go

    		"Comma-separated list of output logging level for scopes in the format of <scope>:<level>[,<scope>:<level>,...]. "+
    			"Possible values for <level>: none, error, warn, info, debug")
    	logCmd.PersistentFlags().StringVar(&stackTraceLevel, "stack-trace-level", stackTraceLevel,
    		"Comma-separated list of stack trace level for scopes in the format of <scope>:<stack-trace-level>[,<scope>:<stack-trace-level>,...]. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top