Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 344 for IsSame (0.1 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

        // We are using a ConcurrentHashMap here because:
        //   - We don't want to use a Set with CLASS_COMPARATOR, since that would treat two classes with the same name originating from different classloaders as identical, allowing only one in the Set.
        //   - ConcurrentHashMap.newKeySet() isn't available on Java 6, yet, and that is where this code needs to run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                    // a cycle where the root component depends on a library which transitively
                    // depends on a different version of the root module. In this case, we effectively
                    // allow 2 modules to have the same capability, so we filter the nodes coming
                    // from transitive dependencies
                    ModuleIdentifier rootModuleId = rootId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ```
    
    This is caused by the fact that the main `jar` task is disabled by the Spring Boot application, and the component expects it to be present.
    Because the `bootJar` task uses the _same file_ as the main `jar` task by default, previous releases of Gradle would either:
    
    - publish a stale `bootJar` artifact
    - or fail if the `bootJar` task hasn't been called previously
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/encoding/gob/type.go

    // to include a version number in the encoding.
    type GobEncoder interface {
    	// GobEncode returns a byte slice representing the encoding of the
    	// receiver for transmission to a GobDecoder, usually of the same
    	// concrete type.
    	GobEncode() ([]byte, error)
    }
    
    // GobDecoder is the interface describing data that provides its own
    // routine for decoding transmitted values sent by a GobEncoder.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. test/typeparam/list2.go

    // The lists l and other may be the same. They must not be nil.
    func (l *_List[T]) PushBackList(other *_List[T]) {
    	l.lazyInit()
    	for i, e := other.Len(), other.Front(); i > 0; i, e = i-1, e.Next() {
    		l.insertValue(e.Value, l.root.prev)
    	}
    }
    
    // PushFrontList inserts a copy of an other list at the front of list l.
    // The lists l and other may be the same. They must not be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit.go

    	return s
    }
    
    // preScoreState computed at PreScore and used at Score.
    type preScoreState struct {
    	// podRequests have the same order as the resources defined in NodeResourcesBalancedAllocationArgs.Resources,
    	// same for other place we store a list like that.
    	podRequests []int64
    }
    
    // Clone implements the mandatory Clone interface. We don't really copy the data since
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

                if (relocatedArtifact != null) {
                    if (withinSameGav(relocatedArtifact, a)) {
                        result.setArtifact(relocatedArtifact);
                        return model; // they share same model
                    } else {
                        result.addRelocation(a);
                        a = relocatedArtifact;
                        result.setArtifact(a);
                    }
                } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. scan.go

    				relValue = joinSchema.ReflectValueOf(db.Statement.Context, currentReflectValue)
    				if relValue.Kind() == reflect.Ptr {
    					fullRelsName := utils.JoinNestedRelationNames(fullRels)
    					// same nested structure
    					if _, ok := joinedNestedSchemaMap[fullRelsName]; !ok {
    						if value := reflect.ValueOf(values[idx]).Elem(); value.Kind() == reflect.Ptr && value.IsNil() {
    							isNilPtrValue = true
    							break
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

          return split == null ? null : new GeneralSpliteratorOfPrimitive<>(split, consumerizer);
        }
      }
    
      /**
       * Different ways of decomposing a Spliterator, all of which must produce the same elements (up to
       * ordering, if Spliterator.ORDERED is not present).
       */
      enum SpliteratorDecompositionStrategy {
        NO_SPLIT_FOR_EACH_REMAINING {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternSet.java

        }
    
        public void setCaseSensitive(boolean caseSensitive) {
            this.caseSensitive = caseSensitive;
        }
    
        /*
        This can't be called just include, because it has the same erasure as include(Iterable<String>).
         */
        public PatternSet includeSpecs(Iterable<Spec<FileTreeElement>> includeSpecs) {
            CollectionUtils.addAll(getIncludeSpecs(), includeSpecs);
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 11.2K bytes
    - Viewed (1)
Back to top