Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,266 for spring (0.14 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinCompilerPluginsSmokeTest.groovy

    package org.gradle.smoketests
    
    class KotlinCompilerPluginsSmokeTest extends AbstractPluginValidatingSmokeTest {
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'org.jetbrains.kotlin.plugin.allopen': TestedVersions.kotlin,
                'org.jetbrains.kotlin.plugin.spring': TestedVersions.kotlin
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 968 bytes
    - Viewed (0)
  2. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/util/ProfileUtil.java

    public class ProfileUtil {
        private static final String SPRING_PROFILES_ACTIVE = "spring.profiles.active";
    
        public static void setup() {
            final List<String> list = new ArrayList<String>();
    
            final String values = System.getProperty(SPRING_PROFILES_ACTIVE);
            if (values != null) {
                for (final String value : values.split(",")) {
                    list.add(value);
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/kts-empty/build.gradle.kts

    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            classpath("com.gradle:build-scan-plugin:${buildScanPluginVersion}")
    <% }%>
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            classpath("io.spring.gradle:dependency-management-plugin:$springDmPluginVersion")
    <% }%>
        }
    }
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
    apply(plugin = "com.gradle.build-scan")
    // TODO: fix buildScan configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

            return config
        }
    
        String getProjectName() {
            return config.projectName
        }
    
        String getDaemonMemory() {
            return config.daemonMemory
        }
    
        def getParallel() {
            return config.parallel
        }
    
        def getMaxWorkers() {
            return config.maxWorkers
        }
    
        @Override
        String toString() {
            return config.projectName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/crypto/internal/boring/boring.go

    		println("boringcrypto: unexpected code execution in", name)
    		panic("boringcrypto: invalid code execution")
    	}
    }
    
    type fail string
    
    func (e fail) Error() string { return "boringcrypto: " + string(e) + " failed" }
    
    func wbase(b BigInt) *C.uint8_t {
    	if len(b) == 0 {
    		return nil
    	}
    	return (*C.uint8_t)(unsafe.Pointer(&b[0]))
    }
    
    const wordBytes = bits.UintSize / 8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // the conversion, "(failed to convert from wide string)" is
      // returned.
      static std::string ShowWideCString(const wchar_t* wide_c_str);
    
      // Compares two wide C strings.  Returns true iff they have the same
      // content.
      //
      // Unlike wcscmp(), this function can handle NULL argument(s).  A
      // NULL C string is considered different to any non-NULL C string,
      // including the empty string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/internal/stringslite/strings.go

    	}
    	return s[:len(s)-len(suffix)], true
    }
    
    func TrimPrefix(s, prefix string) string {
    	if HasPrefix(s, prefix) {
    		return s[len(prefix):]
    	}
    	return s
    }
    
    func TrimSuffix(s, suffix string) string {
    	if HasSuffix(s, suffix) {
    		return s[:len(s)-len(suffix)]
    	}
    	return s
    }
    
    func Clone(s string) string {
    	if len(s) == 0 {
    		return ""
    	}
    	b := make([]byte, len(s))
    	copy(b, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/crypto/tls/boring.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    package tls
    
    import "crypto/internal/boring/fipstls"
    
    // needFIPS returns fipstls.Required(), which is not available without the
    // boringcrypto build tag.
    func needFIPS() bool {
    	return fipstls.Required()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 393 bytes
    - Viewed (0)
Back to top