Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for nyaris (0.14 sec)

  1. cmd/kubeadm/app/cmd/kubeconfig.go

    			}
    
    			// Otherwise, write a kubeconfig file with a generate client cert
    			return kubeconfigphase.WriteKubeConfigWithClientCert(out, internalCfg, clientName, organizations, notAfter)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	options.AddConfigFlag(cmd.Flags(), &cfgPath)
    
    	// Add command specific flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. docs/tr/docs/tutorial/request-forms.md

    !!! warning "Uyarı"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed May 08 19:10:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/check.go

    		for _, v := range b.Values {
    			// Check to make sure argument count makes sense (argLen of -1 indicates
    			// variable length args)
    			nArgs := opcodeTable[v.Op].argLen
    			if nArgs != -1 && int32(len(v.Args)) != nArgs {
    				f.Fatalf("value %s has %d args, expected %d", v.LongString(),
    					len(v.Args), nArgs)
    			}
    
    			// Check to make sure aux values make sense.
    			canHaveAux := false
    			canHaveAuxInt := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. doc/README.md

    ## For the release team
    
    The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
    in `doc/next`.
    
    As a release cycle nears completion, run `relnote todo` to get a list of
    unfinished release note work.
    
    To prepare the release notes for a release, run `relnote generate`.
    That will merge the `.md` files in `next` into a single file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

                      "cellGap": 2,
                      "color": {
                         "mode": "scheme",
                         "scheme": "Spectral",
                         "steps": 128
                      },
                      "yAxis": {
                         "decimals": 0,
                         "unit": "s"
                      }
                   },
                   "pluginVersion": "v11.0.0",
                   "targets": [
                      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/pilot-dashboard.gen.json

                   }
                },
                "cellGap": 0,
                "color": {
                   "mode": "scheme",
                   "scheme": "Spectral",
                   "steps": 128
                },
                "yAxis": {
                   "decimals": 0,
                   "unit": "s"
                }
             },
             "pluginVersion": "v11.0.0",
             "targets": [
                {
                   "datasource": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/writebarrier.go

    	args = append(args, mem)
    
    	// issue call
    	argTypes := make([]*types.Type, nargs, 3) // at most 3 args; allows stack allocation
    	for i := 0; i < nargs; i++ {
    		argTypes[i] = typ
    	}
    	call := b.NewValue0A(pos, OpStaticCall, types.TypeResultMem, StaticAuxCall(fn, b.Func.ABIDefault.ABIAnalyzeTypes(argTypes, nil)))
    	call.AddArgs(args...)
    	call.AuxInt = int64(nargs) * typ.Size()
    	return b.NewValue1I(pos, OpSelectN, types.TypeMem, 0, call)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/token.go

    			printer, err := outputFlags.ToPrinter()
    			if err != nil {
    				return errors.Wrap(err, "could not construct output printer")
    			}
    
    			return RunListTokens(out, errW, client, printer)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	outputFlags.AddFlags(listCmd)
    
    	tokenCmd.AddCommand(listCmd)
    
    	deleteCmd := &cobra.Command{
    		Use:                   "delete [token-value] ...",
    		DisableFlagsInUseLine: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. internal/hash/checksum.go

    		valSplit := strings.Split(value, "-")
    		if len(valSplit) != 2 {
    			return nil
    		}
    		value = valSplit[0]
    		nParts, err := strconv.Atoi(valSplit[1])
    		if err != nil {
    			return nil
    		}
    		alg |= ChecksumMultipart
    		wantParts = nParts
    	}
    	bvalue, err := base64.StdEncoding.DecodeString(value)
    	if err != nil {
    		return nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. hack/verify-flags-underscore.py

    # limitations under the License.
    
    import argparse
    import os
    import re
    import sys
    
    parser = argparse.ArgumentParser()
    parser.add_argument("filenames", help="list of files to check, all files if unspecified", nargs='*')
    args = parser.parse_args()
    
    # Cargo culted from http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python
    def is_binary(pathname):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top