Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 285 for oplus (0.32 sec)

  1. src/main/resources/fess_message_fr.properties

    constraints.AssertFalse.message = {item} doit être faux.
    constraints.AssertTrue.message  = {item} doit être vrai.
    constraints.DecimalMax.message  = {item} doit être plus petit que ${inclusive == true ? 'or equal to ' : ''}{value}.
    constraints.DecimalMin.message  = {item} doit être plus grand que  ${inclusive == true ? 'or equal to ' : ''}{value}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

                checkThatNothingExistsInNewWatchableHierarchy(watchableHierarchyPath, root);
                hierarchies.addFirst(watchableHierarchy);
                watchableFiles = watchableFiles.plus(watchableHierarchy);
            } else {
                hierarchies.remove(watchableHierarchy);
                hierarchies.addFirst(watchableHierarchy);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	Base    Reg
    	Scale   uint8
    	Index   Reg
    	Disp    int64
    }
    
    func (Mem) isArg() {}
    
    func (m Mem) String() string {
    	var base, plus, scale, index, disp string
    
    	if m.Base != 0 {
    		base = m.Base.String()
    	}
    	if m.Scale != 0 {
    		if m.Base != 0 {
    			plus = "+"
    		}
    		if m.Scale > 1 {
    			scale = fmt.Sprintf("%d*", m.Scale)
    		}
    		index = m.Index.String()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

            ConfigurableFileCollection classpath = objectFactory.fileCollection();
            classpath.from((Callable<Object>) () -> sourceSet.getCompileClasspath().plus(objectFactory.fileCollection().from(sourceSet.getJava().getClassesDirectory())));
            compileTask.getConventionMapping().map("classpath", () -> classpath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    		if len(args) >= 1 {
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "replace", "split":
    		if len(args) >= 1 {
    			// cost is the traversal plus the construction of the result
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * 2 * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "join":
    		if len(args) >= 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        }
    
        /**
         * The keys of this map are the IDEA scopes. Each key points to another map that has two keys, plus and minus.
         * The values of those keys are collections of {@link org.gradle.api.artifacts.Configuration} objects. The files of the
         * plus configurations are added minus the files from the minus configurations. See example below...
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileCollectionTest.groovy

            TestFileCollection collection1 = new TestFileCollection(file1, file2)
            TestFileCollection collection2 = new TestFileCollection(file2, file3)
    
            when:
            FileCollection sum = collection1.plus(collection2)
    
            then:
            assertThat(sum, instanceOf(UnionFileCollection.class))
            assertThat(sum.getFiles(), equalTo(toLinkedSet(file1, file2, file3)))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top