Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for iovecs (0.37 sec)

  1. src/syscall/syscall_linux.go

    )
    
    func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regsout))
    	iov.SetLen(int(unsafe.Sizeof(*regsout)))
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(_NT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regs))
    	iov.SetLen(int(unsafe.Sizeof(*regs)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.core
    
    import com.google.common.collect.ImmutableSet
    import org.gradle.api.internal.GradleInternal
    import org.gradle.api.internal.artifacts.transform.DefaultTransformUpstreamDependenciesResolver
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOSUMDB", Value: cfg.GOSUMDB, Changed: cfg.GOSUMDBChanged},
    		{Name: "GOTMPDIR", Value: cfg.Getenv("GOTMPDIR")},
    		{Name: "GOTOOLCHAIN"},
    		{Name: "GOTOOLDIR", Value: build.ToolDir},
    		{Name: "GOVCS", Value: cfg.GOVCS},
    		{Name: "GOVERSION", Value: runtime.Version()},
    		{Name: "GODEBUG", Value: os.Getenv("GODEBUG")},
    		{Name: "GOTELEMETRY", Value: telemetry.Mode()},
    		{Name: "GOTELEMETRYDIR", Value: telemetry.Dir()},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/syscall/fs_wasip1.go

    //
    //go:wasmimport wasi_snapshot_preview1 fd_pread
    //go:noescape
    func fd_pread(fd int32, iovs unsafe.Pointer, iovsLen size, offset filesize, nread unsafe.Pointer) Errno
    
    //go:wasmimport wasi_snapshot_preview1 fd_pwrite
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. pkg/api/testing/unstructured_test.go

    	if err != nil {
    		t.Fatalf("Couldn't create internal object %v: %v", kind, err)
    	}
    	seed := rand.Int63()
    	fuzzer.FuzzerFor(FuzzerFuncs, rand.NewSource(seed), legacyscheme.Codecs).
    		// We are explicitly overwriting custom fuzzing functions, to ensure
    		// that InitContainers and their statuses are not generated. This is
    		// because in this test we are simply doing json operations, in which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/codecs/dubbo/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/codecs/http1/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/codecs/kafka/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/matcher/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

    import org.gradle.internal.serialize.beans.services.DefaultBeanStateReaderLookup
    import org.gradle.internal.serialize.beans.services.DefaultBeanStateWriterLookup
    import org.gradle.internal.serialize.codecs.core.jos.JavaSerializationEncodingLookup
    import org.gradle.internal.serialize.graph.BeanStateReaderLookup
    import org.gradle.internal.serialize.graph.BeanStateWriterLookup
    import org.gradle.internal.service.Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.serialization.codecs
    
    import com.google.common.reflect.TypeToken
    import com.nhaarman.mockitokotlin2.mock
    import org.gradle.api.Project
    import org.gradle.internal.extensions.stdlib.uncheckedCast
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	clientgoscheme "k8s.io/client-go/kubernetes/scheme"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    )
    
    var (
    	scheme = runtime.NewScheme()
    	codecs = serializer.NewCodecFactory(scheme)
    )
    
    func init() {
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	utilruntime.Must(example.AddToScheme(scheme))
    	utilruntime.Must(examplev1.AddToScheme(scheme))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // ops within device cluster.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantInDeviceClusterPass();
    
    // Creates a pass that moves writes to replicate invariant resource variables
    // outside tf_device.replicate op.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateHoistReplicateInvariantResourceWritesPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top