Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 447 for Mainer (0.13 sec)

  1. pkg/test/framework/components/echo/config/source.go

    	TemplateOrFail(t test.Failer) *param.Template
    
    	// MustTemplate calls Template and panics if an error occurs.
    	MustTemplate() *param.Template
    
    	// YAML reads the yaml from this Source. If this source contains parameters,
    	// it is evaluated as a template.
    	YAML() (string, error)
    
    	// YAMLOrFail calls GetYAML and fails if an error occurs.
    	YAMLOrFail(t test.Failer) string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/istio.go

    	// Values returns the operator values for the installed control plane.
    	Values() (OperatorValues, error)
    	ValuesOrFail(test.Failer) OperatorValues
    	// MeshConfig used by the Istio installation.
    	MeshConfig() (*meshconfig.MeshConfig, error)
    	MeshConfigOrFail(test.Failer) *meshconfig.MeshConfig
    	// UpdateMeshConfig used by the Istio installation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. pkg/test/util/file/file.go

    		}
    	}
    	return res, nil
    }
    
    func ReadDirOrFail(t test.Failer, filePath string, extensions ...string) []string {
    	t.Helper()
    	res, err := ReadDir(filePath, extensions...)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return res
    }
    
    func WriteOrFail(t test.Failer, filePath string, contents []byte) {
    	t.Helper()
    	err := os.WriteFile(filePath, contents, os.ModePerm)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/AllDaemonExpirationStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.expiry;
    
    import com.google.common.base.Joiner;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.DO_NOT_EXPIRE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/Names.java

     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    import com.google.common.base.Joiner;
    
    import java.util.Locale;
    
    class Names {
        static String displayNameFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on(' ').join(parts);
        }
    
        static String idFor(Enum<?> value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pkg/kube/kclient/clienttest/crd.go

    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test"
    )
    
    func MakeCRD(t test.Failer, c kube.Client, g schema.GroupVersionResource) {
    	t.Helper()
    	MakeCRDWithAnnotations(t, c, g, nil)
    }
    
    func MakeCRDWithAnnotations(t test.Failer, c kube.Client, g schema.GroupVersionResource, annotations map[string]string) {
    	t.Helper()
    	crd := &v1.CustomResourceDefinition{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. docs/tr/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: Tue May 28 14:05:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/LibraryResolutionResult.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.resolve;
    
    import com.google.common.base.Function;
    import com.google.common.base.Joiner;
    import com.google.common.base.Predicate;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Ordering;
    import org.gradle.api.artifacts.component.LibraryComponentSelector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. pkg/fuzz/util.go

    	for _, c := range [][]byte{
    		{},
    		[]byte("."),
    		bytes.Repeat([]byte("."), 1000),
    	} {
    		f.Add(c)
    	}
    }
    
    // T Returns the underlying test.Failer. Should be avoided where possible; in oss-fuzz many functions do not work.
    func (h Helper) T() test.Failer {
    	return h.t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 30 15:31:14 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. pilot/test/xdstest/extract.go

    		res = append(res, c.Name)
    	}
    	return res
    }
    
    func ExtractTLSSecrets(t test.Failer, secrets []*anypb.Any) map[string]*tls.Secret {
    	res := map[string]*tls.Secret{}
    	for _, a := range secrets {
    		scrt := UnmarshalAny[tls.Secret](t, a)
    		res[scrt.Name] = scrt
    	}
    	return res
    }
    
    func UnmarshalRouteConfiguration(t test.Failer, resp []*anypb.Any) []*route.RouteConfiguration {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top