Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for phis (0.19 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    			continue
    		}
    		if v.Op == OpPhi {
    			// A Phi implies we have reached the top of the block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			continue
    		}
    		if v.Type.IsTuple() && v.Type.FieldType(1).IsMemory() {
    			// We could handle this situation however it is likely
    			// to be very rare.
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            this.name = name;
            this.configurationsProvider = configurationsProvider;
            this.resolver = resolver;
            this.metaDataProvider = metaDataProvider;
            this.componentIdentifierFactory = componentIdentifierFactory;
            this.dependencyLockingProvider = dependencyLockingProvider;
            this.resolutionStrategyFactory = resolutionStrategyFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

            if ( this.treeHandle == null || !this.treeHandle.isConnected() ) {
                if ( this.treeHandle != null && this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    this.treeHandle.release();
                }
                this.treeHandle = this.treeConnection.connectWrapException(this.fileLocator);
                this.treeHandle.ensureDFSResolved();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        void setBuildDir(Object path);
    
        /**
         * The build script for this project.
         * <p>
         * If the file exists, it will be evaluated against this project when this project is configured.
         *
         * @return the build script for this project.
         */
        File getBuildFile();
    
        /**
         * <p>Returns the parent project of this project, if any.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        ) {
            this.owner = owner;
            this.classLoaderScope = selfClassLoaderScope;
            this.baseClassLoaderScope = baseClassLoaderScope;
            this.rootProject = parent != null ? parent.getRootProject() : this;
            this.projectDir = projectDir;
            this.buildFile = buildFile;
            this.parent = parent;
            this.name = name;
            this.state = new ProjectStateInternal();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    // gcBgMarkWorker goroutine.
    type gcBgMarkWorkerNode struct {
    	// Unused workers are managed in a lock-free stack. This field must be first.
    	node lfnode
    
    	// The g of this worker.
    	gp guintptr
    
    	// Release this m on park. This is used to communicate with the unlock
    	// function, which cannot access the G's stack. It is unused outside of
    	// gcBgMarkWorker().
    	m muintptr
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

            int concurrencyLevel,
            ConcurrentMap<K, V> delegate) {
          this.keyStrength = keyStrength;
          this.valueStrength = valueStrength;
          this.keyEquivalence = keyEquivalence;
          this.valueEquivalence = valueEquivalence;
          this.concurrencyLevel = concurrencyLevel;
          this.delegate = delegate;
        }
    
        @Override
        protected ConcurrentMap<K, V> delegate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            if (parents.length == 0) {
                this.parentServices = null;
                this.allServices = ownServices;
                this.inspector = new ClassInspector();
            } else {
                this.parentServices = setupParentServices(parents);
                this.allServices = new CompositeServiceProvider(ownServices, parentServices);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            this.nodeId = nodeId;
            this.component = component;
            this.resolveState = resolveState;
            this.variantState = variant;
            this.metadata = variant.getMetadata();
            this.isTransitive = metadata.isTransitive() || metadata.isExternalVariant();
            this.selectedByVariantAwareResolution = selectedByVariantAwareResolution;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            this.distribution = distribution;
            this.testDirectoryProvider = testDirectoryProvider;
            this.gradleVersion = gradleVersion;
            this.logger = Logging.getLogger(getClass());
            this.buildContext = buildContext;
            this.gradleUserHomeDir = buildContext.getGradleUserHomeDir();
            this.daemonBaseDir = buildContext.getDaemonBaseDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top