Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 372 for sqlite (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    to a database. Only SQLite is supported right now. This function
    will create the schema if it doesn't exist. Entries in the Users,
    Experiments, and Runs tables will be created automatically if they
    don't already exist.
    
    writer: Handle to SummaryWriter resource to overwrite.
    db_uri: For example "file:/tmp/foo.sqlite".
    experiment_name: Can't contain ASCII control characters or <>. Case
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/util/cdi/cdi.go

    		return "", "", device
    	}
    
    	parts := strings.SplitN(device, "=", 2)
    	if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
    		return "", "", device
    	}
    
    	name := parts[1]
    	vendor, class := parseQualifier(parts[0])
    	if vendor == "" {
    		return "", "", device
    	}
    
    	return vendor, class, name
    }
    
    // parseQualifier splits a device qualifier into vendor and class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/runtime/slice.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/math"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type slice struct {
    	array unsafe.Pointer
    	len   int
    	cap   int
    }
    
    // A notInHeapSlice is a slice backed by runtime/internal/sys.NotInHeap memory.
    type notInHeapSlice struct {
    	array *notInHeap
    	len   int
    	cap   int
    }
    
    func panicmakeslicelen() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForTestNgTests/suite.xml

    <?xml version="1.0" encoding="UTF-8"?>
    
    
    <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
    <suite name="SimpleSuite">
        <test name="SimpleTest">
            <classes>
                <class name="org.gradle.FooTest"/>
                <class name="org.gradle.BarTest"/>
            </classes>
        </test>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 308 bytes
    - Viewed (0)
  5. src/go/types/slice.go

    // Source: ../../cmd/compile/internal/types2/slice.go
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    // A Slice represents a slice type.
    type Slice struct {
    	elem Type
    }
    
    // NewSlice returns a new slice type for the given element type.
    func NewSlice(elem Type) *Slice { return &Slice{elem: elem} }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 701 bytes
    - Viewed (0)
  6. src/sort/slice.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sort
    
    import (
    	"internal/reflectlite"
    	"math/bits"
    )
    
    // Slice sorts the slice x given the provided less function.
    // It panics if x is not a slice.
    //
    // The sort is not guaranteed to be stable: equal elements
    // may be reversed from their original order.
    // For a stable sort, use [SliceStable].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/test/framework/suite.go

    	EnvironmentFactory(fn resource.EnvironmentFactory) Suite
    	// Label all the tests in suite with the given labels
    	Label(labels ...label.Instance) Suite
    	// SkipIf skips the suite if the function returns true
    	SkipIf(reason string, fn resource.ShouldSkipFn) Suite
    	// Skip marks a suite as skipped with the given reason. This will prevent any setup functions from occurring.
    	Skip(reason string) Suite
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/simple-split.yaml

    #$ Used in:
    #$ - site-src/guides/traffic-splitting.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: simple-split
    spec:
      rules:
      - backendRefs:
        - name: foo-v1
          port: 8080
          weight: 90
        - name: foo-v2
          port: 8080
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 285 bytes
    - Viewed (0)
  9. maven-builder-support/src/site/site.xml

    Hervé Boutemy <******@****.***> 1706543644 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. maven-plugin-api/src/site/site.xml

    Hervé Boutemy <******@****.***> 1706543644 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top