Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for myFile (0.28 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        }
    
        private static boolean differenceIsSignificant(DataSeries<Duration> myTime, DataSeries<Duration> otherTime, double minConfidence) {
            return (myTime.median - otherTime.median).abs() > MINIMUM_DIFFERENCE_WE_CAN_MEASURE &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. logger/sql_test.go

    }
    
    func TestExplainSQL(t *testing.T) {
    	type role string
    	type password []byte
    	type intType int
    	type floatType float64
    	var (
    		tt                 = now.MustParse("2020-02-23 11:10:10")
    		myrole             = role("admin")
    		pwd                = password("pass")
    		jsVal              = []byte(`{"Name":"test","Val":"test"}`)
    		js                 = JSON(jsVal)
    		esVal              = []byte(`{"Name":"test","Val":"test"}`)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.mail = value;
        }
    
        public String getMobile() {
            checkSpecifiedProperty("mobile");
            return convertEmptyToNull(mobile);
        }
    
        public void setMobile(String value) {
            registerModifiedProperty("mobile");
            this.mobile = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    ----
    
    The modules will have dependencies between them such as `web-app` and `mobile-app` depending on `lib`.
    This means that in order for Gradle to build `web-app` or `mobile-app`, it must build `lib` first.
    
    In this example, the root settings file will look as follows:
    
    .settings.gradle.kts
    [source,kotlin]
    ----
    include("mobile-app", "web-app", "api", "lib", "documentation")
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setMobile_Regexp(String mobile) {
            setMobile_Regexp(mobile, null);
        }
    
        public void setMobile_Regexp(String mobile, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
            RegexpQueryBuilder builder = regRegexpQ("mobile", mobile);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 326.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/kotlin/build-flat.gradle.kts

    plugins {
        id("org.myorg.site")
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
        websiteUrl = "https://gradle.org"
        vcsUrl = "https://github.com/gradle/gradle-site-plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/kotlin/build.gradle.kts

    plugins {
        id("org.myorg.site")
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
    
        siteInfo {
            websiteUrl = "https://gradle.org"
            vcsUrl = "https://github.com/gradle/gradle-site-plugin"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 228 bytes
    - Viewed (0)
  8. pilot/pkg/config/file/store.go

    	s.shas = make(map[kubeResourceKey]resourceSha)
    	s.byFile = make(map[string]map[kubeResourceKey]config.GroupVersionKind)
    	s.inner = memory.MakeSkipValidation(*s.schemas)
    }
    
    // ContentNames returns the names known to this source.
    func (s *KubeSource) ContentNames() map[string]struct{} {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    
    	result := sets.New[string]()
    	for n := range s.byFile {
    		result.Insert(n)
    	}
    
    	return result
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/build-flat.gradle

    plugins {
        id 'org.myorg.site'
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
        websiteUrl = 'https://gradle.org'
        vcsUrl = 'https://github.com/gradle/gradle-site-plugin'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 197 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/build.gradle

    plugins {
        id 'org.myorg.site'
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
    
        siteInfo {
            websiteUrl = 'https://gradle.org'
            vcsUrl = 'https://github.com/gradle/gradle-site-plugin'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 227 bytes
    - Viewed (0)
Back to top