Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,087 for makeID (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/pmd_plugin.adoc

    ====
    
    [NOTE]
    ====
    This configuration is internal to PMD and is not linked to <<performance#parallel_execution,the number of workers>> used by Gradle.
    It means that you have to pay attention to the value entered here and make sure it still makes sense in a multi project build.
    This is because parallel Gradle task execution could result in different PMD tasks from different projects running in parallel.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/grpcecho_test.go

    			Version:    s.version,
    		})
    		if err != nil {
    			t.Fatal(err)
    		}
    		wg.Add(1)
    		if err := ep.Start(func() {
    			wg.Done()
    		}); err != nil {
    			t.Fatal(err)
    		}
    
    		cfgs = append(cfgs, makeWE(s, ip, ep.GetConfig().Port.Port))
    		cgt.endpoints = append(cgt.endpoints, ep)
    		t.Cleanup(func() {
    			if err := ep.Close(); err != nil {
    				t.Errorf("failed to close endpoint %s: %v", ip, err)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/dryrun/dryrun.go

    // Useful for things like loading a file from /tmp/ but saying to the user "Would write file foo to /etc/kubernetes/..."
    type FileToPrint struct {
    	RealPath  string
    	PrintPath string
    }
    
    // NewFileToPrint makes a new instance of FileToPrint with the specified arguments
    func NewFileToPrint(realPath, printPath string) FileToPrint {
    	return FileToPrint{
    		RealPath:  realPath,
    		PrintPath: printPath,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    		{`package p13
    
    		var (
    		    v = t.m()
    		    t = makeT(0)
    		)
    
    		type T struct{}
    
    		func (T) m() int { return 0 }
    
    		func makeT(n int) T {
    		    if n > 0 {
    		        return makeT(n-1)
    		    }
    		    return T{}
    		}`, []string{
    			"t = makeT(0)", "v = t.m()",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/crypto/dsa/dsa.go

    	// omitting it makes the code cleaner.
    
    	var L, N int
    	switch sizes {
    	case L1024N160:
    		L = 1024
    		N = 160
    	case L2048N224:
    		L = 2048
    		N = 224
    	case L2048N256:
    		L = 2048
    		N = 256
    	case L3072N256:
    		L = 3072
    		N = 256
    	default:
    		return errors.New("crypto/dsa: invalid ParameterSizes")
    	}
    
    	qBytes := make([]byte, N/8)
    	pBytes := make([]byte, L/8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/encoding/gob/encoder.go

    	return enc.EncodeValue(reflect.ValueOf(e))
    }
    
    // sendTypeDescriptor makes sure the remote side knows about this type.
    // It will send a descriptor if this is the first time the type has been
    // sent.
    func (enc *Encoder) sendTypeDescriptor(w io.Writer, state *encoderState, ut *userTypeInfo) {
    	// Make sure the type is known to the other side.
    	// First, have we already sent this type?
    	rt := ut.base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/copyelim.go

    			w.reset(OpUnknown)
    			break
    		}
    		if advance {
    			slow = slow.Args[0]
    		}
    		advance = !advance
    	}
    
    	// The answer is w.  Update all the copies we saw
    	// to point directly to w.  Doing this update makes
    	// sure that we don't end up doing O(n^2) work
    	// for a chain of n copies.
    	for v != w {
    		x := v.Args[0]
    		v.SetArg(0, w)
    		v = x
    	}
    	return w
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. test/typeparam/issue51232.go

    }
    
    type concreteF[RCT RC[RG], RG any] struct {
    	makeFn func() Fn[RCT] // ERROR "not enough type arguments for type Fn: have 1, want 2"
    }
    
    func (c *concreteF[RCT, RG]) Fn() Fn[RCT] { // ERROR "not enough type arguments for type Fn: have 1, want 2"
    	return c.makeFn()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 898 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/discovery/token/token.go

    )
    
    // BootstrapUser defines bootstrap user name
    const BootstrapUser = "token-bootstrap-client"
    
    // RetrieveValidatedConfigInfo connects to the API Server and tries to fetch the cluster-info ConfigMap
    // It then makes sure it can trust the API Server by looking at the JWS-signed tokens and (if CACertHashes is not empty)
    // validating the cluster CA against a set of pinned public keys
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen=true
    // +k8s:openapi-gen=true
    message Quantity {
      optional string string = 1;
    }
    
    // QuantityValue makes it possible to use a Quantity as value for a command
    // line parameter.
    //
    // +protobuf=true
    // +protobuf.embed=string
    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top