Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for addOption (0.23 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

            options.addOption(Option.builder(Character.toString(VERSION))
                    .longOpt("version")
                    .desc("Display version information")
                    .build());
            options.addOption(Option.builder(Character.toString(QUIET))
                    .longOpt("quiet")
                    .desc("Quiet output - only show errors")
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        @Test
        void testPerformProfileActivation() throws ParseException {
            final CommandLineParser parser = new DefaultParser();
    
            final Options options = new Options();
            options.addOption(Option.builder(Character.toString(CLIManager.ACTIVATE_PROFILES))
                    .hasArg()
                    .build());
    
            ProfileActivation activation;
    
            activation = new ProfileActivation();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

                }
    
                ParsedCommandLineOption parsedOption = commandLine.addOption(optionString.option, option);
                if (values.size() + parsedOption.getValues().size() > 1 && !option.getAllowsMultipleArguments()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

                        writerContext.writeValue(value)
                        writerContext.newLine()
                    }
                }
    
                javadoc {
                    options {
                        addOption(new CustomJavadocOptionFileOption())
                    }
                }
            """
            writeSourceFile()
            expect:
            succeeds("javadoc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            bottom = addStringOption(OPTION_BOTTOM);
            links = addMultilineStringsOption(OPTION_LINK);
            linksOffline = addOption(new LinksOfflineJavadocOptionFileOption(OPTION_LINKOFFLINE, new ArrayList<>()));
            linkSource = addBooleanOption(OPTION_LINKSOURCE);
            groups = addOption(new GroupsJavadocOptionFileOption(OPTION_GROUP, new LinkedHashMap<>()));
            noDeprecated = addBooleanOption(OPTION_NODEPRECATED);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    				if lister.Contains(notContains) != types.False {
    					t.Errorf("Expected Contains to return false for %v", notContains)
    				}
    			}
    
    			addition := UnstructuredToVal(tc.addition, tc.schema).(traits.Lister)
    			added := lister.Add(addition).Value()
    			if !reflect.DeepEqual(added, tc.expectAdded) {
    				t.Errorf("Expected Add to return %v but got %v", tc.expectAdded, added)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256.go

    	buf = append(buf, x.Bytes()...)
    	return buf
    }
    
    // Add sets q = p1 + p2, and returns q. The points may overlap.
    func (q *P256Point) Add(p1, p2 *P256Point) *P256Point {
    	// Complete addition formula for a = -3 from "Complete addition formulas for
    	// prime order elliptic curves" (https://eprint.iacr.org/2015/1060), §A.2.
    
    	t0 := new(fiat.P256Element).Mul(p1.x, p2.x)  // t0 := X1 * X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin.go

    // and we need to know whether to check 32 or 64 bits of the result.
    // (Some libc functions that return 32 bits put junk in the upper 32 bits of AX.)
    
    // golang.org/x/sys linknames syscall_syscall
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    //go:linkname syscall_syscall syscall.syscall
    //go:nosplit
    func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2, err uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/flags.h

      class PjRtForSingleDeviceCompilationRollout {
       public:
        // Allow using Device API (PjRt) for `device_type` in the XlaLaunch op.
        // Please note that `enabled_for_xla_launch_` needs to be true in addition
        // to the `device_type` being allowed in order to use the Device API for
        // single device compilation and execution in the XlaLaunch op.
        void AllowForDeviceInXlaLaunch(const DeviceType& device_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu.go

    // is not X86/AMD64 then all feature flags are false.
    //
    // X86 is padded to avoid false sharing. Further the HasAVX
    // and HasAVX2 are only set if the OS supports XMM and YMM
    // registers in addition to the CPUID feature bit being set.
    var X86 struct {
    	_                   CacheLinePad
    	HasAES              bool // AES hardware implementation (AES NI)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top