Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for yyy (0.03 sec)

  1. cni/test/testdata/expected/YYY-istio-cni.conf

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 367 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ToolingApiLoggingCrossVersionSpec.groovy

    System.err.println "sys err logging xxx"
    
    println "println logging yyy"
    
    project.logger.error("error logging xxx");
    project.logger.warn("warn logging yyy");
    project.logger.lifecycle("lifecycle logging yyy");
    project.logger.quiet("quiet logging yyy");
    project.logger.info ("info logging yyy");
    project.logger.debug("debug logging yyy");
    """
            when:
            def stdOut = new TestOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. pilot/pkg/security/trustdomain/bundle_test.go

    			trustDomainBundle: NewBundle("td2", []string{"td1", "cluster.local"}),
    			principals:        []string{"cluster.local/ns/foo/sa/bar", "td1/ns/yyy/sa/zzz"},
    			expect: []string{
    				"td2/ns/foo/sa/bar", "td1/ns/foo/sa/bar", "cluster.local/ns/foo/sa/bar",
    				"td2/ns/yyy/sa/zzz", "td1/ns/yyy/sa/zzz", "cluster.local/ns/yyy/sa/zzz",
    			},
    		},
    		{
    			name:              "Two trust domain aliases with * prefix in trust domain",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 11 16:19:15 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.addDesignJspFileName("xxx", "yyy");
            assertEquals("yyy", systemHelper.getDesignJspFileName("xxx"));
            final Pair<String, String>[] designJspFileNames = systemHelper.getDesignJspFileNames();
            assertEquals(1, designJspFileNames.length);
            assertEquals("xxx", designJspFileNames[0].getFirst());
            assertEquals("yyy", designJspFileNames[0].getSecond());
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/test/java/org/apache/maven/api/settings/SettingsTest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/crash.go

    }
    
    type P string
    
    func (p P) String() string {
    	// Try to free the "YYY" string header when the "XXX"
    	// panic is stringified.
    	runtime.GC()
    	runtime.GC()
    	runtime.GC()
    	return string(p)
    }
    
    // Test that panic message is not clobbered.
    // See issue 30150.
    func DoublePanic() {
    	defer func() {
    		panic(P("YYY"))
    	}()
    	panic(P("XXX"))
    }
    
    // Test that panic while panicking discards error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. test/fixedbugs/bug207.go

    // the code to fill in the ... argument to fmt.Sprint.
    
    package main
    
    import "fmt"
    
    type T struct {
    	a, b, c, d, e []int;
    }
    
    var t T
    
    func main() {
    	if fmt.Sprint("xxx", t) != "yyy" { 
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 402 bytes
    - Viewed (0)
  8. test/fixedbugs/issue33062.go

    	int
    	string
    }
    
    type complexStruct struct {
    	int
    	simpleStruct
    }
    
    func main() {
    	x := complexStruct{1, simpleStruct{2, "xxx"}}
    	ix := interface{}(x)
    	y := complexStruct{1, simpleStruct{2, "yyy"}}
    	iy := interface{}(y)
    	if ix != ix {
    		panic("FAIL")
    	}
    	if ix == iy {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 11 22:30:42 UTC 2019
    - 568 bytes
    - Viewed (0)
  9. releasenotes/notes/41621.yaml

    releaseNotes:
      - |
        **Fixed** an issue where istiod, when started with PILOT_ENABLE_STATUS=true, 
        reported the following error on shutdown: failed to properly clean up distribution report: configmaps 
        "istiod-xxx-yyy-distribution" is forbidden: User "system:serviceaccount:istio-system:istiod" cannot 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 25 16:27:18 UTC 2022
    - 457 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        Map<String, Integer> filtered = Maps.filterKeys(unfiltered, NOT_LENGTH_3);
        filtered.put("a", 1);
        filtered.put("b", 2);
        assertEquals(ImmutableMap.of("a", 1, "b", 2), filtered);
    
        try {
          filtered.put("yyy", 3);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testFilteredKeysIllegalPutAll() {
        Map<String, Integer> unfiltered = createUnfiltered();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top