Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 285 for oplus (0.1 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

                FileCollection nonConfigurationClasspathEntries = sourceSet.getCompileClasspath().minus(compileClasspath);
                return sourceSet.getOutput().plus(nonConfigurationClasspathEntries).plus(pmdAuxClasspath);
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                root(":", ":test:") {
                    module("org.gradle:test:1.45")
                }
            }
        }
    
        def "dependency that references a classifier includes the matching artifact only plus the transitive dependencies of referenced configuration"() {
            given:
            ivyRepo.module("org.gradle", "test", "1.45")
                .dependsOn("org.gradle", "other", "preview-1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "StaticCall", argLength: -1, aux: "CallOff", call: true},  // call function aux.(*obj.LSym), arg0..argN-1 are register inputs, argN=memory.  auxint=arg size.  Returns Result of register results, plus memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/security/first-steps.md

        * Es benötigt jedoch eine Authentifizierung für diesen bestimmten Endpunkt.
        * Um sich also bei unserer API zu authentifizieren, sendet es einen Header `Authorization` mit dem Wert `Bearer` plus dem Token.
        * Wenn der Token `foobar` enthielte, wäre der Inhalt des `Authorization`-Headers: `Bearer foobar`.
    
    ## **FastAPI**s `OAuth2PasswordBearer`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

    }
    
    
    operator fun FunctionExtractor.plus(other: FunctionExtractor): CompositeFunctionExtractor = CompositeFunctionExtractor(buildList {
        fun include(functionExtractor: FunctionExtractor) = when (functionExtractor) {
            is CompositeFunctionExtractor -> addAll(functionExtractor.extractors)
            else -> add(functionExtractor)
        }
        include(this@plus)
        include(other)
    })
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. internal/s3select/sql/value.go

    	}
    }
    
    func isValidArithOperator(op string) bool {
    	switch op {
    	case opPlus:
    	case opMinus:
    	case opDivide:
    	case opMultiply:
    	case opModulo:
    	default:
    		return false
    	}
    	return true
    }
    
    // Overflow errors are ignored.
    func intArithOp(op string, left, right int64) (int64, error) {
    	switch op {
    	case opPlus:
    		return left + right, nil
    	case opMinus:
    		return left - right, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

      // Guarded by this.
      private lateinit var publicSuffixListBytes: ByteArray
      private lateinit var publicSuffixExceptionListBytes: ByteArray
    
      /**
       * Returns the effective top-level domain plus one (eTLD+1) by referencing the public suffix list.
       * Returns null if the domain is a public suffix or a private address.
       *
       * Here are some examples:
       *
       * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

                                        <la:link href="createnew/${f:u(dictId)}"
                                                 styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                            <em class="fa fa-plus">
                                            <la:message key="labels.dict_mapping_link_create"/>
                                        </la:link>
                                        <la:link href="downloadpage/${f:u(dictId)}"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp

                                        <la:link href="createnew/${f:u(dictId)}"
                                                 styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                            <em class="fa fa-plus">
                                            <la:message key="labels.dict_stopwords_link_create"/>
                                        </la:link>
                                        <la:link href="downloadpage/${f:u(dictId)}"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp

                                        <la:link href="installplugin"
                                                 styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                            <em class="fa fa-plus">
                                            <la:message key="labels.plugin_install"/>
                                        </la:link>
                                    </div>
                                </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.5K bytes
    - Viewed (0)
Back to top