Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 98 for Parses (0.45 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf_test.cc

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. doc/next/3-tools.md

    <!-- go.dev/issue/34208, CL 563137, CL 586095 -->
    The new `go` `env` `-changed` flag causes the command to print only
    those settings whose effective value differs from the default value
    that would be obtained in an empty environment with no prior uses of the `-w` flag.
    
    <!-- go.dev/issue/27005, CL 585401 -->
    The new `go` `mod` `tidy` `-diff` flag causes the command not to modify
    the files but instead print the necessary changes as a unified diff.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/build.gradle.kts

        implementation(project(":testing-base"))
    
        implementation(libs.guava)
    
        compileOnly(libs.groovy) {
            because("some used APIs (e.g. FileTree.visit) provide methods taking Groovy closures which causes compile errors")
        }
    
        testImplementation(project(":resources"))
    
        integTestImplementation(project(":internal-testing"))
        integTestImplementation(project(":internal-integ-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/proxy/util/utils.go

    			}
    			continue
    		}
    		// since we just succefully parsed the CIDR, IPFamilyOfCIDR will never return "IPFamilyUnknown"
    		ipFamily := convertToV1IPFamily(netutils.IPFamilyOfCIDR(cidr))
    		ipFamilyMap[ipFamily] = append(ipFamilyMap[ipFamily], cidr)
    	}
    	return ipFamilyMap
    }
    
    // GetIPFamilyFromIP Returns the IP family of ipStr, or IPFamilyUnknown if ipStr can't be parsed as an IP
    func GetIPFamilyFromIP(ip net.IP) v1.IPFamily {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/crypto/tls/ech_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		configs, err := parseECHConfigList(b)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if len(configs) != tc.numConfigs {
    			t.Fatalf("unexpected number of configs parsed: got %d want %d", len(configs), tc.numConfigs)
    		}
    	}
    
    }
    
    func TestSkipBadConfigs(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_errors_pos.txt

    # Test case for #67623 in go.work files: make sure the errors are
    # printed on lines starting with file and line number so they
    # can be easily parsed by tools.
    
    cp go.work.repeated.txt go.work
    ! go list
    stderr '^go.work:4: path .* appears multiple times in workspace$'
    
    cp go.work.badgodebug.txt go.work
    ! go list
    stderr '^go.work:3: unknown godebug "foo"$'
    
    cp go.work.unparsable.txt go.work
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops_test.cc

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

    #include "mlir/IR/DialectRegistry.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/experimental/tac/runtime_metadata_generated.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    
    namespace tflite {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. security/pkg/pki/util/crypto.go

    		}
    		cert, err := x509.ParseCertificate(cb.Bytes)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to parse X.509 certificate")
    		}
    		certs = append(certs, cert)
    		if len(certBytes) == 0 {
    			break
    		}
    	}
    	if len(certs) == 0 {
    		return nil, nil, fmt.Errorf("no PEM encoded X.509 certificates parsed")
    	}
    	return certs, rootCertBytes, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/internal/trace/raw/event.go

    type Event struct {
    	Version version.Version
    	Ev      event.Type
    	Args    []uint64
    	Data    []byte
    }
    
    // String returns the canonical string representation of the event.
    //
    // This format is the same format that is parsed by the TextReader
    // and emitted by the TextWriter.
    func (e *Event) String() string {
    	spec := e.Version.Specs()[e.Ev]
    
    	var s strings.Builder
    	s.WriteString(spec.Name)
    	for i := range spec.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top