Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for oplus (0.28 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            flatten(s1) == [dir1.path, "1:dir2/dir3", "1:dir5/and/more"]
    
            def s2 = s1.plus(dir1dir2dir4)
            flatten(s2) == [dir1.path, "1:dir2", "2:dir3", "2:dir4", "1:dir5/and/more"]
    
            def s3 = s2.plus(dir6)
            flatten(s3) == [parent.path, "1:dir1", "2:dir2", "3:dir3", "3:dir4", "2:dir5/and/more", "1:dir6"]
    
            def s4 = s3.plus(dir1dir2)
            flatten(s4) == [parent.path, "1:dir1", "2:dir2", "2:dir5/and/more", "1:dir6"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

         */
        @CheckReturnValue
        public abstract FileHierarchySet plus(File path);
    
        /**
         * Returns a set that contains the union of this set and the given absolute path. The set contains the path itself, plus all its descendants.
         */
        @CheckReturnValue
        public abstract FileHierarchySet plus(String absolutePath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                classpath = classpath.plus(moduleRegistry.getModule("gradle-dependency-management").getAllRequiredModulesClasspath());
                classpath = classpath.plus(moduleRegistry.getModule("gradle-plugin-use").getAllRequiredModulesClasspath());
                classpath = classpath.plus(moduleRegistry.getModule("gradle-workers").getAllRequiredModulesClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     *   //   extensionReceiver: null
     *   // }
     *   // accessType: OpAssign {
     *   //   kind: PLUS
     *   //   operand: "b"
     *   //   operationSymbol: String?.plus()
     *   // }
     * }
     * ```
     * Such a call always involve both calls to `get` and `set` functions. With the example above, a call to `String?.plus` is sandwiched
     * between `get` and `set` call to compute the new value passed to `set`.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            assertCanMutate();
            CollectionSupplier<T, C> explicitValue = getExplicitValue(defaultValue).absentIgnoringIfNeeded(ignoreAbsent);
            setSupplier(explicitValue.plus(collector.absentIgnoringIfNeeded(ignoreAbsent)));
        }
    
        @Nullable
        @Override
        public Class<C> getType() {
            return Cast.uncheckedCast(collectionType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            assertCanMutate();
            MapSupplier<K, V> explicitValue = getExplicitValue(defaultValue).absentIgnoringIfNeeded(ignoreAbsent);
            setSupplier(explicitValue.plus(collector.absentIgnoringIfNeeded(ignoreAbsent)));
        }
    
        private Configurer getConfigurer() {
            return getConfigurer(false);
        }
    
        private Configurer getConfigurer(boolean ignoreAbsent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

                }
            });
    
            setFrom(Cast.castNullable(FileCollection.class, object));
        }
    
        @Override
        public FileCollection plus(FileCollection collection) {
            return new UnionFileCollection(taskDependencyFactory, this, (FileCollectionInternal) collection);
        }
    
        @Override
        public void setFrom(Iterable<?> path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. src/go/build/deps_test.go

    	< path;
    
    	unicode !< path;
    
    	# SYSCALL is RUNTIME plus the packages necessary for basic system calls.
    	RUNTIME, unicode/utf8, unicode/utf16
    	< internal/syscall/windows/sysdll, syscall/js
    	< syscall
    	< internal/syscall/unix, internal/syscall/windows, internal/syscall/windows/registry
    	< internal/syscall/execenv
    	< SYSCALL;
    
    	# TIME is SYSCALL plus the core packages about time, including context.
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/fmt/print.go

    	switch verb {
    	case 'v', 'b', 'g', 'G', 'x', 'X', 'f', 'F', 'e', 'E':
    		oldPlus := p.fmt.plus
    		p.buf.writeByte('(')
    		p.fmtFloat(real(v), size/2, verb)
    		// Imaginary part always has a sign.
    		p.fmt.plus = true
    		p.fmtFloat(imag(v), size/2, verb)
    		p.buf.writeString("i)")
    		p.fmt.plus = oldPlus
    	default:
    		p.badVerb(verb)
    	}
    }
    
    func (p *pp) fmtString(v string, verb rune) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                // When not running from a Gradle distro, need the daemon main jar and the daemon server implementation plus the search path to look for other modules
                classpath = registry.getModule("gradle-daemon-server").getAllRequiredModulesClasspath();
                classpath = classpath.plus(registry.getModule("gradle-daemon-main").getImplementationClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top