Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 186 for Reflection (0.17 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

     *
     * <ul>
     *   <li>SafeAtomicHelper: uses AtomicReferenceFieldsUpdaters to implement synchronization
     *   <li>SynchronizedHelper: uses {@code synchronized} blocks for synchronization
     * </ul>
     *
     * To force selection of our fallback strategies we load {@link AbstractFuture} (and all of {@code
     * com.google.common.util.concurrent}) in degenerate class loaders which make certain platform
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeScopeServices.java

    import org.gradle.execution.ProjectConfigurer;
    import org.gradle.execution.TaskNameResolver;
    import org.gradle.execution.TaskPathProjectEvaluator;
    import org.gradle.execution.TaskSelector;
    import org.gradle.execution.selection.DefaultBuildTaskSelector;
    import org.gradle.initialization.BuildOptionBuildOperationProgressEventsEmitter;
    import org.gradle.initialization.exception.DefaultExceptionAnalyser;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultExternalComponentGraphResolveState.java

        private final ConcurrentMap<ModuleConfigurationMetadata, DefaultConfigurationGraphResolveState> variants = new ConcurrentHashMap<>();
    
        // The variants to use for variant selection during graph resolution
        private final Lazy<List<? extends VariantGraphResolveState>> allVariantsForGraphResolution;
    
        // The public view of all selectable variants of this component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/cleanup.go

    			err = multierror.Append(err, e)
    		}
    
    		// Cleanup all secrets and configmaps - these are dynamically created by tests and/or istiod so they are not captured above
    		// This includes things like leader election locks (allowing next test to start without 30s delay),
    		// custom cacerts, custom kubeconfigs, etc.
    		// We avoid deleting the whole namespace since its extremely slow in Kubernetes (30-60s+)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/server.go

    		}
    
    		close(handlerSyncReadyCh)
    		logger.V(3).Info("Handlers synced")
    	}
    	if !cc.ComponentConfig.DelayCacheUntilActive || cc.LeaderElection == nil {
    		startInformersAndWaitForSync(ctx)
    	}
    	// If leader election is enabled, runCommand via LeaderElector until done and exit.
    	if cc.LeaderElection != nil {
    		cc.LeaderElection.Callbacks = leaderelection.LeaderCallbacks{
    			OnStartedLeading: func(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleScopeServices.java

    import org.gradle.execution.plan.LocalTaskNodeExecutor;
    import org.gradle.execution.plan.NodeExecutor;
    import org.gradle.execution.plan.PlanExecutor;
    import org.gradle.execution.plan.WorkNodeExecutor;
    import org.gradle.execution.selection.BuildTaskSelector;
    import org.gradle.execution.taskgraph.DefaultTaskExecutionGraph;
    import org.gradle.execution.taskgraph.TaskExecutionGraphInternal;
    import org.gradle.execution.taskgraph.TaskListenerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    // In any failure to parse given object, it returns error.
    type AttrFunc func(obj runtime.Object) (labels.Set, fields.Set, error)
    
    // FieldMutationFunc allows the mutation of the field selection fields.  It is mutating to
    // avoid the extra allocation on this common path
    type FieldMutationFunc func(obj runtime.Object, fieldSet fields.Set) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            when:
            run ':a:checkRelease'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkRelease')
        }
    
        def "explicit configuration selection should take precedence"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            where:
            changeDesc                                   | changeArg
            "a new external dependency"                  | "-DexternalDependency=true"
            "changing selection reasons"                 | "-DselectionReason=changed"
            "changing project library variant metadata"  | "-DprojectLibAttrValue=new-value"
            "changing included library variant metadata" | "-DcompositeLibAttrValue=new-value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

                if (reselectVariants) {
                    return viewAttributes;
                }
    
                // Otherwise, artifact views without re-selection are based on the original request attributes.
                return attributesFactory.concat(baseAttributes, viewAttributes);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top