Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 547 for desc1 (0.04 sec)

  1. tensorflow/compiler/mlir/tf_mlir_translate_main.cc

    static llvm::cl::opt<std::string> input_filename(llvm::cl::Positional,
                                                     llvm::cl::desc("<input file>"),
                                                     llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> output_filename(
        "o", llvm::cl::desc("Output filename"), llvm::cl::value_desc("filename"),
        llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue24161e1/main.go

    import "C"
    import (
    	"fmt"
    	"testing"
    )
    
    func f1() {
    	C.SecKeyCreateSignature(0, C.kSecKeyAlgorithmECDSASignatureDigestX962SHA1, 0, nil)
    }
    
    func f2(e C.CFErrorRef) {
    	if desc := C.CFErrorCopyDescription(e); desc != 0 {
    		fmt.Println(desc)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/staticpod/utils_test.go

    	tests := []struct {
    		desc     string
    		endpoint *kubeadmapi.APIEndpoint
    		expected string
    	}{
    		{
    			desc:     "nil endpoint returns 127.0.0.1",
    			expected: "127.0.0.1",
    		},
    		{
    			desc:     "empty AdvertiseAddress endpoint returns 127.0.0.1",
    			endpoint: &kubeadmapi.APIEndpoint{},
    			expected: "127.0.0.1",
    		},
    		{
    			desc: "filled in AdvertiseAddress endpoint returns it",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  4. operator/pkg/util/label_test.go

    )
    
    func TestSetLabel(t *testing.T) {
    	tests := []struct {
    		desc      string
    		wantLabel string
    		wantValue string
    		wantErr   error
    	}{
    		{
    			desc:      "AddMapLabelMapValue",
    			wantLabel: "foo",
    			wantValue: "bar",
    			wantErr:   nil,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			resource := &unstructured.Unstructured{Object: make(map[string]any)}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

    opt<std::string> input_path(llvm::cl::Positional,
                                llvm::cl::desc("<input path>"), llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> output_filename("o", llvm::cl::desc("<output path>"),
                                     llvm::cl::Optional, llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    opt<std::string> input_arg_shapes_str(
        "input-arg-shapes",
        llvm::cl::desc(
            "A string representation of input argument shapes for 'main' "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoader.java

            }
    
            @Override
            public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
                if (desc.equals(ANNOTATION_DESCRIPTOR)) {
                    return new AnnotationTransformingVisitor(super.visitAnnotation(desc, visible));
                }
                return super.visitAnnotation(desc, visible);
            }
    
            private static class AnnotationTransformingVisitor extends AnnotationVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptor.java

                    MethodModelRuleDescriptor desc = descriptors.get(weakMethod);
                    if (desc != null) {
                        return desc;
                    }
                    desc = new MethodModelRuleDescriptor(weakMethod);
                    // Only cache non-overloaded methods by name
                    descriptors.put(weakMethod, desc);
                    return desc;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

            assertFalse(desc, isGuarded(method));
            assertTrue(desc, isTimed(method));
            break;
          case 3:
            assertTrue(desc, isGuarded(method));
            assertTrue(desc, isTimed(method));
            break;
          default:
            fail(desc);
        }
    
        if (method.getReturnType() == void.class) {
          assertFalse(desc, isBoolean(method));
        } else {
          assertTrue(desc, isBoolean(method));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	testCases := []struct {
    		desc    string
    		config  string
    		want    []healthChecker
    		wantErr string
    		kmsv2   bool
    		kmsv1   bool
    	}{
    		{
    			desc:    "Invalid config file path",
    			config:  "invalid/path",
    			want:    nil,
    			wantErr: `error reading encryption provider configuration file "invalid/path"`,
    		},
    		{
    			desc:    "Empty config file content",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/podresources/server_v1_test.go

    		},
    	}
    
    	for _, tc := range []struct {
    		desc             string
    		pods             []*v1.Pod
    		devices          []*podresourcesapi.ContainerDevices
    		cpus             []int64
    		memory           []*podresourcesapi.ContainerMemory
    		dynamicResources []*podresourcesapi.DynamicResource
    		expectedResponse *podresourcesapi.ListPodResourcesResponse
    	}{
    		{
    			desc:             "no pods",
    			pods:             []*v1.Pod{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
Back to top