Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for spring (0.34 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    Calling link:{groovyDslPath}/org.gradle.api.artifacts.ComponentSelection.html#org.gradle.api.artifacts.ComponentSelection:reject(java.lang.String)[ComponentSelection.reject(java.lang.String)] causes the given candidate version to be explicitly rejected, in which case the candidate will not be considered for the selector.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    [[sec:building_java_webapps]]
    == Building Java web applications
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Publishing Spring Boot applications
    
    Starting from Gradle 6.2, Gradle performs a sanity check before uploading, to make sure you don't upload stale files (files produced by another build).
    This introduces a problem with Spring Boot applications which are uploaded using the `components.java` component:
    
    ```
    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. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    .Importing a BOM in a Gradle build
    ====
    include::sample[dir="snippets/mavenMigration/importBom/kotlin",files="build.gradle.kts[tags=bom]"]
    include::sample[dir="snippets/mavenMigration/importBom/groovy",files="build.gradle[tags=bom]"]
    ====
    <1> Applies the Spring Boot Dependencies BOM
    <2> Adds a dependency whose version is defined by that BOM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. src/debug/pe/string.go

    	}
    	// string table length includes itself
    	if l <= 4 {
    		return nil, nil
    	}
    	l -= 4
    
    	buf, err := saferio.ReadData(r, uint64(l))
    	if err != nil {
    		return nil, fmt.Errorf("fail to read string table: %v", err)
    	}
    	return StringTable(buf), nil
    }
    
    // TODO(brainman): decide if start parameter should be int instead of uint32
    
    // String extracts string from COFF string table st at offset start.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:06:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    		}
    
    		diag := analysis.Diagnostic{
    			Pos:     n.Pos(),
    			Message: fmt.Sprintf("conversion from %s to %s yields a string of one rune, not a string of digits (did you mean fmt.Sprint(x)?)", source, target),
    		}
    
    		if convertibleToRune {
    			diag.SuggestedFixes = []analysis.SuggestedFix{
    				{
    					Message: "Did you mean to convert a rune to a string?",
    					TextEdits: []analysis.TextEdit{
    						{
    							Pos:     arg.Pos(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/matcher/string.go

    package matcher
    
    import (
    	"strings"
    
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    )
    
    // StringMatcher creates a string matcher for v.
    func StringMatcher(v string) *matcher.StringMatcher {
    	return StringMatcherWithPrefix(v, "")
    }
    
    // StringOrMatcher creates an OR string matcher for a list of values.
    func StringOrMatcher(vs []string) *matcher.ValueMatcher {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/impl/string.h

       */
      explicit String(const char* s);
    
      String() : String("") {}
      String(const String& s) : value_(s.value_) {}
    
      // This is the same as the default equality operator, which works because
      // we're interning all strings. It is specified here so we are explicit about
      // it. We're not saying "= default;" because we can't use C++20 features yet.
      bool operator==(const String& other) const { return value_ == other.value_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    // If the value passed in is not actually a map, this will panic.
    func StringKeySet[T any](theMap map[string]T) String {
    	return String(KeySet(theMap))
    }
    
    // Insert adds items to the set.
    func (s String) Insert(items ...string) String {
    	return String(cast(s).Insert(items...))
    }
    
    // Delete removes all items from the set.
    func (s String) Delete(items ...string) String {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/string.kt

    package org.gradle.kotlin.dsl.fixtures
    
    
    fun <T> Iterable<T>.joinLines(transform: (T) -> String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 157 bytes
    - Viewed (0)
Back to top