Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 447 for Mainer (0.19 sec)

  1. guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

    import java.util.Iterator;
    
    /**
     * Benchmarks {@link Joiner} against some common implementations of delimiter-based string joining.
     *
     * @author Adomas Paltanavicius
     */
    public class JoinerBenchmark {
    
      private static final String DELIMITER_STRING = ",";
      private static final char DELIMITER_CHARACTER = ',';
    
      private static final Joiner JOINER_ON_STRING = Joiner.on(DELIMITER_STRING);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/HttpHeadersTest.java

            builder.add(field);
          }
        }
        return builder.build();
      }
    
      private static final Splitter SPLITTER = Splitter.on('_');
      private static final Joiner JOINER = Joiner.on('-');
    
      private static String upperToHttpHeaderName(
          String constantName,
          ImmutableBiMap<String, String> specialCases,
          ImmutableSet<String> uppercaseAcronyms) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:08:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/config/plan.go

    	Factory
    
    	// Copy returns a deep copy of this Plan.
    	Copy() Plan
    
    	// Apply this config.
    	Apply(opts ...apply.Option) error
    	ApplyOrFail(t test.Failer, opts ...apply.Option)
    
    	// Delete this config.
    	Delete() error
    	DeleteOrFail(t test.Failer)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. pilot/test/util/diff.go

    func CompareContent(t test.Failer, content []byte, goldenFile string) {
    	t.Helper()
    	golden := ReadGoldenFile(t, content, goldenFile)
    	CompareBytes(t, content, golden, goldenFile)
    }
    
    // ReadGoldenFile reads the content of the golden file and fails the test if an error is encountered
    func ReadGoldenFile(t test.Failer, content []byte, goldenFile string) []byte {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 08:53:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/sidecar.go

    	msg := &admin.ServerInfo{}
    	if err := s.adminRequest("server_info", msg); err != nil {
    		return nil, err
    	}
    
    	return msg, nil
    }
    
    func (s *sidecar) InfoOrFail(t test.Failer) *admin.ServerInfo {
    	t.Helper()
    	info, err := s.Info()
    	if err != nil {
    		t.Fatal(err)
    	}
    	return info
    }
    
    func (s *sidecar) Config() (*admin.ConfigDump, error) {
    	msg := &admin.ConfigDump{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/AbstractExpression.java

                case MACRO_FUNCTION:
                    return value + "(" + Joiner.on(", ").join(arguments) + ")";
                case EXPRESSIONS:
                    return Joiner.on(" ").join(arguments);
                case ARGS_LIST:
                    return "(" + Joiner.on(", ").join(arguments) + ")";
                default:
                    return value != null ? value : "??";
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/waitcontrolplane.go

    		return nil
    	}
    
    	waiter, err := newControlPlaneWaiter(data.DryRun(), 0, nil, data.OutputWriter())
    	if err != nil {
    		return errors.Wrap(err, "error creating waiter")
    	}
    
    	waiter.SetTimeout(data.Cfg().Timeouts.ControlPlaneComponentHealthCheck.Duration)
    	if err := waiter.WaitForControlPlaneComponents(&initCfg.ClusterConfiguration); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/RunTasksRequirements.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    import com.google.common.base.Joiner;
    import org.gradle.api.internal.StartParameterInternal;
    import org.gradle.internal.Describables;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.hash.Hasher;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 11 00:17:12 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

      final TestCloseable closeable2 = new TestCloseable("closeable2");
      final TestCloseable closeable3 = new TestCloseable("closeable3");
      final TestCloseable closeable4 = new TestCloseable("closeable4");
    
      final Waiter waiter = new Waiter();
      final CountDownLatch futureCancelled = new CountDownLatch(1);
      final Exception exception = new Exception();
      final Closeable mockCloseable = Mockito.mock(Closeable.class);
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top