Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,675 for scope_ (0.59 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/scorer.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    )
    
    // classResourceMap holds a map of storage class to resource.
    type classResourceMap map[string]*StorageResource
    
    // volumeCapacityScorer calculates the score based on class storage resource information.
    type volumeCapacityScorer func(classResourceMap) int64
    
    // buildScorerFunction builds volumeCapacityScorer from the scoring function shape.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            STATIC,
    
            /**
             * A scope containing both non-static and static members. A smart combined scope (as opposed to a naive combination of [KaScope]s
             * with [getCompositeScope]) avoids duplicate inner classes, as they are contained in non-static and static scopes.
             *
             * A proper combined declared member scope kind also makes it easier to cache combined scopes directly (if needed).
             */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassDecoder.kt

                } else {
                    scope.exportClassLoader
                }
            } else {
                this.classLoader
            }
            val newType = Class.forName(name, false, classLoader)
            classes.putInstance(id, newType)
            return newType
        }
    
        private
        fun ReadContext.readScope(): ClassLoaderScope {
            val id = readSmallInt()
            val scope = scopes.getInstance(id)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

    import org.gradle.internal.logging.LoggingManagerInternal
    import org.gradle.internal.logging.events.LogLevelChangeEvent
    import org.gradle.internal.logging.events.OutputEventListener
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.session.BuildSessionLifecycleListener
    import org.gradle.process.internal.ExecException
    import org.gradle.process.internal.health.memory.DefaultMBeanAttributeProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. docs_src/security/tutorial005.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)
Back to top