Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 103 for nyaris (0.56 sec)

  1. android/guava/src/com/google/common/graph/ImmutableValueGraph.java

       * static final ImmutableValueGraph<City, Distance> CITY_ROAD_DISTANCE_GRAPH =
       *     ValueGraphBuilder.undirected()
       *         .<City, Distance>immutable()
       *         .putEdgeValue(PARIS, BERLIN, kilometers(1060))
       *         .putEdgeValue(PARIS, BRUSSELS, kilometers(317))
       *         .putEdgeValue(BERLIN, BRUSSELS, kilometers(764))
       *         .addNode(REYKJAVIK)
       *         .build();
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.7K 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/syscall/mksyscall_libc.pl

    			$text .= "\tif $name {\n\t\t_p$n = 1\n\t} else {\n\t\t_p$n = 0\n\t}\n";
    			push @args, "uintptr(_p$n)";
    			$n++;
    		} else {
    			push @args, "uintptr($name)";
    		}
    	}
    	my $nargs = @args;
    
    	my $asmfuncname="";
    	my $asmrawfuncname="";
    
    	if($aix){
    		$asmfuncname="syscall6";
    		$asmrawfuncname="rawSyscall6";
    	} else {
    		$asmfuncname="sysvicall6";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. 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)
  5. src/text/template/parse/lex_test.go

    		tRight,
    		tEOF,
    	}},
    	{"pipeline", `intro {{echo hi 1.2 |noargs|args 1 "hi"}} outro`, []item{
    		mkItem(itemText, "intro "),
    		tLeft,
    		mkItem(itemIdentifier, "echo"),
    		tSpace,
    		mkItem(itemIdentifier, "hi"),
    		tSpace,
    		mkItem(itemNumber, "1.2"),
    		tSpace,
    		tPipe,
    		mkItem(itemIdentifier, "noargs"),
    		tPipe,
    		mkItem(itemIdentifier, "args"),
    		tSpace,
    		mkItem(itemNumber, "1"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top