Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for yyy (0.11 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cni/test/install_k8s_test.go

    			resultFileName:     "YYY-istio-cni.conf",
    			expectedOutputFile: testDataDir + "/expected/YYY-istio-cni.conf",
    		},
    		{
    			name:               "standalone plugin user defined name",
    			preConfFile:        "user-defined.conf",
    			resultFileName:     "user-defined.conf",
    			expectedOutputFile: testDataDir + "/expected/YYY-istio-cni.conf",
    		},
    	}
    	for _, tc := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 27 18:01:48 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/Collections2Test.java

        suite.addTest(testsForTransform());
        suite.addTestSuite(Collections2Test.class);
        return suite;
      }
    
      static final Predicate<@Nullable String> NOT_YYY_ZZZ =
          input -> !"yyy".equals(input) && !"zzz".equals(input);
    
      static final Predicate<String> LENGTH_1 = input -> input.length() == 1;
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      private static Test testsForFilter() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/godefs.go

    			if n != nil && n.Mangle != "" {
    				override[n.Mangle] = s.Name.Name
    			}
    		}
    	}
    
    	// Extend overrides using typedefs:
    	// If we know that C.xxx should format as T
    	// and xxx is a typedef for yyy, make C.yyy format as T.
    	for typ, def := range typedef {
    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    				override[id.Name] = new
    			}
    		}
    	}
    
    	// Apply overrides.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top