Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 116 for rune1 (0.04 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

                    }
                }
    
                def run11 = providers.gradleProperty("run11").isPresent()
                run {
                    javaLauncher = javaToolchains.launcherFor {
                        languageVersion = JavaLanguageVersion.of(run11 ? ${jdk11.javaVersion.majorVersion} : ${jdk17.javaVersion.majorVersion})
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/waypoint.go

    		Use:   "generate",
    		Short: "Generate a waypoint configuration",
    		Long:  "Generate a waypoint configuration as YAML",
    		Example: `  # Generate a waypoint as yaml
      istioctl waypoint generate --namespace default`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			gw, err := makeGateway(false)
    			if err != nil {
    				return fmt.Errorf("failed to create gateway: %v", err)
    			}
    			b, err := yaml.Marshal(gw)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/reflect/value.go

    }
    
    // runes returns v's underlying value.
    // It panics if v's underlying value is not a slice of runes (int32s).
    func (v Value) runes() []rune {
    	v.mustBe(Slice)
    	if v.typ().Elem().Kind() != abi.Int32 {
    		panic("reflect.Value.Bytes of non-rune slice")
    	}
    	// Slice is always bigger than a word; assume flagIndir.
    	return *(*[]rune)(v.ptr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/server.go

    	o := options.NewCustomResourceDefinitionsServerOptions(out, errOut)
    
    	cmd := &cobra.Command{
    		Short: "Launch an API extensions API server",
    		Long:  "Launch an API extensions API server",
    		RunE: func(c *cobra.Command, args []string) error {
    			if err := o.Complete(); err != nil {
    				return err
    			}
    			if err := o.Validate(); err != nil {
    				return err
    			}
    			if err := Run(c.Context(), o); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/config.go

    			not perform the real computation for creating a token.
    		`), action, action, configutil.PlaceholderToken.Token.String()),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			groups, err := mapLegacyKindsToGroups(kinds)
    			if err != nil {
    				return err
    			}
    			return runConfigPrintActionDefaults(out, groups, configBytesProc)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/token.go

    			The [token] is the actual token to write.
    			This should be a securely generated random token of the form "[a-z0-9]{6}.[a-z0-9]{16}".
    			If no [token] is given, kubeadm will generate a random token instead.
    		`),
    		RunE: func(tokenCmd *cobra.Command, args []string) error {
    			if len(args) > 0 {
    				bto.TokenStr = args[0]
    			}
    			klog.V(1).Infoln("[token] validating mixed arguments")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/certs.go

    			}
    		}(handler)
    		// install the implementation into the command
    		cmd.RunE = func(*cobra.Command, []string) error { return renewalFunc() }
    		cmd.Args = cobra.NoArgs
    		cmdList = append(cmdList, cmd)
    	}
    
    	allCmd := &cobra.Command{
    		Use:   "all",
    		Short: "Renew all available certificates",
    		Long:  allLongDesc,
    		RunE: func(*cobra.Command, []string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/io/io.go

    // return an error, unread the last rune read (or the rune prior to the
    // last-unread rune), or (in implementations that support the [Seeker] interface)
    // seek to the start of the rune before the current offset.
    type RuneScanner interface {
    	RuneReader
    	UnreadRune() error
    }
    
    // StringWriter is the interface that wraps the WriteString method.
    type StringWriter interface {
    	WriteString(s string) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. src/mime/mediatype.go

    				// {RFC 2231 section 7}
    				// attribute-char := <any (US-ASCII) CHAR except SPACE, CTLs, "*", "'", "%", or tspecials>
    				if ch <= ' ' || ch >= 0x7F ||
    					ch == '*' || ch == '\'' || ch == '%' ||
    					isTSpecial(rune(ch)) {
    
    					b.WriteString(value[offset:index])
    					offset = index + 1
    
    					b.WriteByte('%')
    					b.WriteByte(upperhex[ch>>4])
    					b.WriteByte(upperhex[ch&0x0F])
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    		Meta: config.Meta{
    			Name:             "rule1",
    			Namespace:        "test1",
    			GroupVersionKind: gvk.VirtualService,
    		},
    		Spec: &networking.VirtualService{
    			Hosts:    []string{"rule1.com"},
    			ExportTo: []string{".", "ns1"},
    		},
    	})
    	_, _ = configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "rule1",
    			Namespace:        "test1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top