Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for gopack (0.12 sec)

  1. tensorflow/c/eager/dlpack.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/eager/dlpack.h"
    
    #include <string>
    
    #include "include/dlpack/dlpack.h"  // from @dlpack
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/c_api_experimental.h"
    #include "tensorflow/c/eager/tfe_tensorhandle_internal.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package hpack implements HPACK, a compression format for
    // efficiently representing HTTP header fields in the context of HTTP/2.
    //
    // See http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09
    package hpack
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

    import okio.buffer
    
    /**
     * Read and write HPACK v10.
     *
     * http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12
     *
     * This implementation uses an array for the dynamic table and a list for indexed entries. Dynamic
     * entries are added to the array, starting in the last position moving forward. When the array
     * fills, it is doubled.
     */
    @Suppress("NAME_SHADOWING")
    object Hpack {
      private const val PREFIX_4_BITS = 0x0f
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager_test.go

    	}
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    	mockStatsProvider := statstest.NewMockProvider(mockCtrl)
    	manager, _ := newRealImageGCManager(policy, mockStatsProvider)
    
    	// Expect 40% usage.
    	imageStats := &statsapi.FsStats{
    		AvailableBytes: uint64Ptr(600),
    		CapacityBytes:  uint64Ptr(1000),
    	}
    	mockStatsProvider.EXPECT().ImageFsStats(gomock.Any()).Return(imageStats, imageStats, nil)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. src/cmd/distpack/pack.go

    Michael Matloob <******@****.***> 1715626742 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/go/script_test.go

    	must(os.MkdirAll(filepath.Join(work, "tmp"), 0777))
    	must(s.Setenv(tempEnvName(), filepath.Join(work, "tmp")))
    
    	gopath := filepath.Join(work, "gopath")
    	must(s.Setenv("GOPATH", gopath))
    	gopathSrc := filepath.Join(gopath, "src")
    	must(os.MkdirAll(gopathSrc, 0777))
    	must(s.Chdir(gopathSrc))
    	return telemetryDir
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/README

    a small script engine configured in ../../script_test.go (not the system shell).
    
    The scripts' supporting files are unpacked relative to $GOPATH/src
    (aka $WORK/gopath/src) and then the script begins execution in that directory as
    well. Thus the example above runs in $WORK/gopath/src with GOPATH=$WORK/gopath
    and $WORK/gopath/src/hello.go containing the listed contents.
    
    Each line of a script is parsed into a sequence of space-separated command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    //
    
    // Package eviction is a generated GoMock package.
    package eviction
    
    import (
    	context "context"
    	reflect "reflect"
    	time "time"
    
    	gomock "go.uber.org/mock/gomock"
    	v1alpha1 "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    // MockManager is a mock of Manager interface.
    type MockManager struct {
    	ctrl     *gomock.Controller
    	recorder *MockManagerMockRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/podresources/testing/provider_mock.go

    //
    
    // Package testing is a generated GoMock package.
    package testing
    
    import (
    	reflect "reflect"
    
    	gomock "go.uber.org/mock/gomock"
    	v1 "k8s.io/api/core/v1"
    	v10 "k8s.io/kubelet/pkg/apis/podresources/v1"
    )
    
    // MockDevicesProvider is a mock of DevicesProvider interface.
    type MockDevicesProvider struct {
    	ctrl     *gomock.Controller
    	recorder *MockDevicesProviderMockRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. pkg/kubelet/status/testing/mock_pod_status_provider.go

    //
    //	mockgen -source=status_manager.go -destination=testing/mock_pod_status_provider.go -package=testing PodStatusProvider
    //
    
    // Package testing is a generated GoMock package.
    package testing
    
    import (
    	reflect "reflect"
    
    	gomock "go.uber.org/mock/gomock"
    	v1 "k8s.io/api/core/v1"
    	types "k8s.io/apimachinery/pkg/types"
    	container "k8s.io/kubernetes/pkg/kubelet/container"
    	types0 "k8s.io/kubernetes/pkg/kubelet/types"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top