Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for Printer (1.16 sec)

  1. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	out.QuantityValue = (*apiresource.Quantity)(unsafe.Pointer(in.QuantityValue))
    	out.BoolValue = (*bool)(unsafe.Pointer(in.BoolValue))
    	out.IntValue = (*int64)(unsafe.Pointer(in.IntValue))
    	out.IntSliceValue = (*resource.NamedResourcesIntSlice)(unsafe.Pointer(in.IntSliceValue))
    	out.StringValue = (*string)(unsafe.Pointer(in.StringValue))
    	out.StringSliceValue = (*resource.NamedResourcesStringSlice)(unsafe.Pointer(in.StringSliceValue))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	if tt := v.Type(); tt != tfunc {
    		t.Errorf("Pointer Pointer Value Method Type is %s; want %s", tt, tfunc)
    	}
    	i = ValueOf(v.Interface()).Call([]Value{ValueOf(14)})[0].Int()
    	if i != 350 {
    		t.Errorf("Pointer Pointer Value Method returned %d; want 350", i)
    	}
    	v = ValueOf(&pp).Elem().MethodByName("Dist")
    	if tt := v.Type(); tt != tfunc {
    		t.Errorf("Pointer Pointer Value MethodByName Type is %s; want %s", tt, tfunc)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	}
    )
    
    // Pointer represents a pointer to an arbitrary Windows type.
    //
    // Pointer-typed fields may point to one of many different types. It's
    // up to the caller to provide a pointer to the appropriate type, cast
    // to Pointer. The caller must obey the unsafe.Pointer rules while
    // doing so.
    type Pointer *struct{}
    
    // Invented values to support what package os expects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <p>
    A <code>Pointer</code> is a <a href="#Pointer_types">pointer type</a> but a <code>Pointer</code>
    value may not be <a href="#Address_operators">dereferenced</a>.
    Any pointer or value of <a href="#Types">underlying type</a> <code>uintptr</code> can be converted to
    a type of underlying type <code>Pointer</code> and vice versa.
    The effect of converting between <code>Pointer</code> and <code>uintptr</code> is implementation-defined.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		}
    		ts.g.set(mp.g0)
    		ts.tls = (*uint64)(unsafe.Pointer(&mp.tls[0]))
    		ts.fn = unsafe.Pointer(abi.FuncPCABI0(mstart))
    		if msanenabled {
    			msanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
    		}
    		if asanenabled {
    			asanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
    		}
    		execLock.rlock() // Prevent process clone.
    		asmcgocall(_cgo_thread_start, unsafe.Pointer(&ts))
    		execLock.runlock()
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    	resourcePaths := sets.New[string]()
    
    	if tp.Kind() == reflect.Pointer {
    		resourcePaths.Insert(sets.List[string](collectResourcePaths(t, resourcename, path, name, tp.Elem()))...)
    		return resourcePaths
    	}
    
    	if strings.Contains(strings.ToLower(name), resourcename) {
    		resourcePaths.Insert(path.String())
    	}
    
    	switch tp.Kind() {
    	case reflect.Pointer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// reference creates a cycle in the graph.
    	printing []AST
    }
    
    // writeByte adds a byte to the string being printed.
    func (ps *printState) writeByte(b byte) {
    	ps.last = b
    	ps.buf.WriteByte(b)
    }
    
    // writeString adds a string to the string being printed.
    func (ps *printState) writeString(s string) {
    	if len(s) > 0 {
    		ps.last = s[len(s)-1]
    	}
    	ps.buf.WriteString(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// arg0 = destination pointer
    		// arg1 = source pointer
    		// arg2 = mem
    		// auxint = # of bytes to copy, must be multiple of 16
    		// returns memory
    		{
    			name:      "DUFFCOPY",
    			aux:       "Int64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              "schema": {
                "type": "integer",
                "uniqueItems": true
              }
            },
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

              "kind": "FlowSchema",
              "version": "v1beta3"
            }
          },
          "parameters": [
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
Back to top