Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for _this9 (0.18 sec)

  1. 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)
  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. 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)
  4. 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)
  5. fastapi/param_functions.py

                This doesn't affect `Path` parameters as the value is always required.
                The parameter is available only for compatibility.
                """
            ),
        ] = _Unset,
        alias: Annotated[
            Optional[str],
            Doc(
                """
                An alternative name for the parameter field.
    
                This will be used to extract the data and for the generated OpenAPI.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. src/runtime/mgcmark.go

    				// the first event for the goroutine in the trace
    				// or trace generation. Also, do this between
    				// acquire/release because this is part of the
    				// goroutine's trace state, and it must be atomic
    				// with respect to the tracer.
    				gp.inMarkAssist = false
    				traceRelease(trace)
    			} else {
    				// This state is tracked even if tracing isn't enabled.
    				// It's only used by the new tracer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. 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)
Back to top