Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for gotPings (0.25 sec)

  1. cmd/kubeadm/app/cmd/config_test.go

    			}
    
    			gotKinds := []string{}
    			for gvk := range gvkmap {
    				gotKinds = append(gotKinds, gvk.Kind)
    			}
    
    			sort.Strings(gotKinds)
    
    			if !reflect.DeepEqual(gotKinds, test.expectedKinds) {
    				t.Fatalf("kinds not matching:\n\texpectedKinds: %v\n\tgotKinds: %v\n", test.expectedKinds, gotKinds)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            1 * selectedChild.store(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE, snapshot, diffListener) >> updatedChild
        }
    
        def "querying the snapshot for non-existing child #vfsSpec.searchedPath finds nothings (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.getSnapshot(searchedPath, CASE_SENSITIVE)
            then:
            !resultRoot.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            buildFile << """
                test {
                  include 'FooTest*'
                  def cls = "FooTest"
                  filter {
                    includeTestsMatching "\${cls}.passOne" //make sure GStrings work
                    includeTestsMatching "\${cls}.passTwo"
                  }
                }
            """
            file("src/test/java/FooTest.java") << """
                ${testFrameworkImports}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

        }
    
    
        /*
         * Groovy manipulates the JVM to let GString extend String.
         * Whenever we have a Set or Map containing Strings, it might also
         * contain GStrings. This breaks deserialization on the client.
         * This method forces GString to String conversion.
         */
        private static String convertGString(CharSequence original) {
            return original.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            failure.assertHasCause("Cannot fingerprint input property 'b': value 'xxx' cannot be serialized.")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "deals gracefully with not serializable contents of GStrings"() {
            buildFile << """
                task foo {
                    inputs.property "a", "hello \${new Foo()}"
                    outputs.file "foo.txt"
                    doLast { file("foo.txt") << "" }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

        }
    
        def "reports build logic reading environment variables with getenv(String) using GString parameters"() {
            // Note that the map returned from System.getenv() doesn't support GStrings as keys, so there is no point in testing it.
            buildFile << '''
                def ci = "ci"
                def value = "value"
                println "CI1 = " + System.getenv("${ci.toUpperCase()}1")
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais.go

    // See Ge Nong, Sen Zhang, and Wai Hong Chen,
    // "Two Efficient Algorithms for Linear Time Suffix Array Construction",
    // especially section 3 (https://ieeexplore.ieee.org/document/5582081).
    // See also http://zork.net/~st/jottings/sais.html.
    //
    // With optimizations inspired by Yuta Mori's sais-lite
    // (https://sites.google.com/site/yuta256/sais).
    //
    // And with other new optimizations.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top