Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for unnamed (0.14 sec)

  1. src/debug/elf/elf.go

    // Relocation types for PowerPC.
    //
    // Values that are shared by both R_PPC and R_PPC64 are prefixed with
    // R_POWERPC_ in the ELF standard. For the R_PPC type, the relevant
    // shared relocations have been renamed with the prefix R_PPC_.
    // The original name follows the value in a comment.
    type R_PPC int
    
    const (
    	R_PPC_NONE            R_PPC = 0  // R_POWERPC_NONE
    	R_PPC_ADDR32          R_PPC = 1  // R_POWERPC_ADDR32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	PIPE_TYPE_MESSAGE          = 0x4
    	PIPE_ACCEPT_REMOTE_CLIENTS = 0x0
    	PIPE_REJECT_REMOTE_CLIENTS = 0x8
    
    	PIPE_UNLIMITED_INSTANCES = 255
    )
    
    // Constants for security attributes when opening named pipes.
    const (
    	SECURITY_ANONYMOUS      = SecurityAnonymous << 16
    	SECURITY_IDENTIFICATION = SecurityIdentification << 16
    	SECURITY_IMPERSONATION  = SecurityImpersonation << 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "name": {
              "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
              "type": "string"
            },
            "protocol": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	if err := q.Update(logger, gatedPod, ungatedPod); err != nil {
    		t.Error("Error calling Update")
    	}
    
    	ungatedPodInfo, _ := q.Pop(logger)
    	if ungatedPodInfo.Gated {
    		t.Error("expected pod to be ungated")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self.assertTrue(self._contains_quantized_function_call(output_graphdef))
    
        # Makes sure that the original function identified by the signature key
        # `main` is renamed to `main_0` (see `InsertMainFunctionPass` for details).
        self.assertTrue(
            any(
                map(
                    lambda func: func.signature.name == 'main_0',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // Version prints the build information for Go binary files.
    //
    // Go version reports the Go version used to build each of the named files.
    //
    // If no files are named on the command line, go version prints its own
    // version information.
    //
    // If a directory is named, go version walks that directory, recursively,
    // looking for recognized Go binaries and reporting their versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    		// here, the assembly has failed.
    		// if it's a byte instruction that has
    		// unaddressable registers, try to
    		// exchange registers and reissue the
    		// instruction with the operands renamed.
    		pp := *p
    
    		unbytereg(&pp.From, &pp.Ft)
    		unbytereg(&pp.To, &pp.Tt)
    
    		z := int(p.From.Reg)
    		if p.From.Type == obj.TYPE_REG && z >= REG_BP && z <= REG_DI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  9. cmd/server_test.go

    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	verifyError(c, response, "BucketAlreadyOwnedByYou", "Your previous request to create the named bucket succeeded and you already own it.",
    		http.StatusConflict)
    }
    
    func (s *TestSuiteCommon) TestGetObjectLarge10MiB(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top