Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 193 for cdata (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-data-type-with-subtype.pbtxt

    # Test the handling of the input data types. In particular, if the data type
    # for an input graph node is specified via command line options, use it.
    # otherwise, use the data type of the node in the graph.
    
    node {
      name: "p"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            unknown_rank: true
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 00:16:51 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. hack/update-generated-api-compatibility-data.sh

    rm -f staging/src/k8s.io/api/testdata/HEAD/*.{yaml,json,pb}
    rm -f staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/*.{yaml,json,pb}
    
    # UPDATE_COMPATIBILITY_FIXTURE_DATA=true regenerates fixture data if needed.
    # -run //HEAD only runs the test cases comparing against testdata for HEAD.
    # We suppress the output because we are expecting to have changes.
    # We suppress the test failure that occurs when there are changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    		}
    
    		// push bootstrap config as a ConfigMap so we can mount it on our "vm" pods
    		cmData := map[string][]byte{}
    		generatedFiles, err := os.ReadDir(subsetDir)
    		if err != nil {
    			return err
    		}
    		for _, file := range generatedFiles {
    			if file.IsDir() {
    				continue
    			}
    			cmData[file.Name()], err = os.ReadFile(path.Join(subsetDir, file.Name()))
    			if err != nil {
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. build-logic/lifecycle/src/main/kotlin/gradlebuild.teamcity-import-test-data.gradle.kts

    import org.gradle.tooling.events.task.TaskSuccessResult
    
    /**
     * This is a workaround for https://youtrack.jetbrains.com/issue/TW-76894.
     *
     * In short, we want TeamCity to be aware of the test execution data (which tests are executed and how long they are),
     * even when the Test task is `FROM-CACHE` or `UP-TO-DATE`. This build service will output a service message to instruct TeamCity to read JUnit test result XMLs.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 09:11:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/transport.go

    	})
    
    	// Zero out all existing TLS options since our new transport enforces them.
    	clientConfig.CertData = nil
    	clientConfig.KeyData = nil
    	clientConfig.CertFile = ""
    	clientConfig.KeyFile = ""
    	clientConfig.CAData = nil
    	clientConfig.CAFile = ""
    	clientConfig.Insecure = false
    	clientConfig.NextProtos = nil
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  6. pkg/kubelet/client/kubelet_client.go

    	transportConfig := config.transportConfig()
    	if insecureSkipTLSVerify {
    		transportConfig.TLS.Insecure = true
    		transportConfig.TLS.CAFile = "" // we are only using files so we can ignore CAData
    	}
    
    	if config.Lookup != nil {
    		// Assuming EgressSelector if SSHTunnel is not turned on.
    		// We will not get a dialer if egress selector is disabled.
    		networkContext := egressselector.Cluster.AsNetworkContext()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-multi-data-type-with-subtype.pbtxt

    # Test the handling of the input data types. In particular, if the data type
    # for an input graph node is specified via command line options, use it.
    # otherwise, use the data type of the node in the graph.
    
    node {
      name: "p"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "shape"
        value {
          shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:11:42 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/bench_test.go

    	}
    	extra := path.Join("testdata", "benchmarks", configName+".extra.yaml")
    	inputYAML := buf.String()
    	if _, err := os.Stat(extra); err == nil {
    		bdata, err := os.ReadFile(extra)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		inputYAML += "\n---\n" + yml.SplitYamlByKind(string(bdata))[gvk.EnvoyFilter.Kind]
    	}
    
    	configs, badKinds, err := crd.ParseInputs(inputYAML)
    	if err != nil {
    		t.Fatalf("failed to read config: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	out.CAFile = in.CAFile
    	out.CertData = *(*[]byte)(unsafe.Pointer(&in.CertData))
    	out.KeyData = *(*[]byte)(unsafe.Pointer(&in.KeyData))
    	out.CAData = *(*[]byte)(unsafe.Pointer(&in.CAData))
    	return nil
    }
    
    // Convert_v1_ExtenderTLSConfig_To_config_ExtenderTLSConfig is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  10. pkg/apis/networking/v1/defaults_test.go

    	t.Helper()
    	data, err := runtime.Encode(legacyscheme.Codecs.LegacyCodec(SchemeGroupVersion), obj)
    	if err != nil {
    		t.Errorf("%v\n %#v", err, obj)
    		return nil
    	}
    	obj2, err := runtime.Decode(legacyscheme.Codecs.UniversalDecoder(), data)
    	if err != nil {
    		t.Errorf("%v\nData: %s\nSource: %#v", err, string(data), obj)
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top