Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 436 for capi (2.83 sec)

  1. src/runtime/vlrt.go

    }
    
    //go:nosplit
    func slowdodiv(n, d uint64) (q, r uint64) {
    	if d == 0 {
    		panicdivide()
    	}
    
    	// Set up the divisor and find the number of iterations needed.
    	capn := n
    	if n >= sign64 {
    		capn = sign64
    	}
    	i := 0
    	for d < capn {
    		d <<= 1
    		i++
    	}
    
    	for ; i >= 0; i-- {
    		q <<= 1
    		if n >= d {
    			n -= d
    			q |= 1
    		}
    		d >>= 1
    	}
    	return q, n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/web/api.go

    Bryan C. Mills <******@****.***> 1659164072 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2/api.proto

    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.
    */
    
    // To regenerate api.pb.go run `hack/update-codegen.sh protobindings`
    syntax = "proto3";
    
    package v2;
    option go_package = "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2";
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:43:30 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/c/eager/parallel_device/parallel_device_remote_test.cc

    ==============================================================================*/
    
    #include <array>
    #include <memory>
    #include <string>
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/c_api_experimental.h"
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/c_api_experimental.h"
    #include "tensorflow/c/eager/parallel_device/parallel_device.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 22:09:57 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    	// declares an empty "C" package and errors are omitted for qualified
    	// identifiers referring to package C (which won't find an object).
    	// This feature is intended for the standard library cmd/api tool.
    	//
    	// Caution: Effects may be unpredictable due to follow-on errors.
    	//          Do not use casually!
    	FakeImportC bool
    
    	// If IgnoreBranchErrors is set, branch/label errors are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.proto

    Tim Hockin <******@****.***> 1673720162 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/go/types/api.go

    	Fset *token.FileSet // file set for interpretation of Pos
    	Pos  token.Pos      // error position
    	Msg  string         // error message
    	Soft bool           // if set, error is "soft"
    
    	// go116code is a future API, unexported as the set of error codes is large
    	// and likely to change significantly during experimentation. Tools wishing
    	// to preview this feature may read go116code using reflection (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/ztunnel/configdump/api.go

    John Howard <******@****.***> 1718297489 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. api/discovery/api.json

    Jordan Liggitt <******@****.***> 1683993112 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 184 bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/plugin/v1beta1/api.go

    	PluginListAndWatchReceiver(string, *api.ListAndWatchResponse)
    }
    
    // TODO: evaluate whether we need these error definitions.
    const (
    	// errFailedToDialDevicePlugin is the error raised when the device plugin could not be
    	// reached on the registered socket
    	errFailedToDialDevicePlugin = "failed to dial device plugin:"
    	// errUnsupportedVersion is the error raised when the device plugin uses an API version not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 11:05:20 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top