Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for Ss (0.09 sec)

  1. pkg/registry/apps/statefulset/strategy_test.go

    	}
    
    	errs := Strategy.Validate(ctx, ss)
    	if len(errs) != 0 {
    		t.Errorf("Strategy.Validate(%v) returned error: %v", ss, errs)
    	}
    
    	if ss.Generation != 1 {
    		t.Errorf("Generation = %v, want = 1 for StatefulSet: %v", ss.Generation, ss)
    	}
    
    	// Validate that the ordinals field is retained when StatefulSetStartOridnal is disabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/crypto/tls/ticket.go

    		ss.verifiedChains = append(ss.verifiedChains, chain)
    	}
    	if ss.EarlyData {
    		var alpn []byte
    		if !readUint8LengthPrefixed(&s, &alpn) {
    			return nil, errors.New("tls: invalid session encoding")
    		}
    		ss.alpnProtocol = string(alpn)
    	}
    	if isClient := typ == 2; !isClient {
    		if !s.Empty() {
    			return nil, errors.New("tls: invalid session encoding")
    		}
    		return ss, nil
    	}
    	ss.isClient = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/internal/profile/profile.go

    // for debugging purposes.
    func (p *Profile) String() string {
    
    	ss := make([]string, 0, len(p.Sample)+len(p.Mapping)+len(p.Location))
    	if pt := p.PeriodType; pt != nil {
    		ss = append(ss, fmt.Sprintf("PeriodType: %s %s", pt.Type, pt.Unit))
    	}
    	ss = append(ss, fmt.Sprintf("Period: %d", p.Period))
    	if p.TimeNanos != 0 {
    		ss = append(ss, fmt.Sprintf("Time: %v", time.Unix(0, p.TimeNanos)))
    	}
    	if p.DurationNanos != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

      ss << "\nprune_unused_nodes: " << prune_unused_nodes;
      ss << "\nconvert_legacy_fed_inputs: " << convert_legacy_fed_inputs;
      ss << "\ngraph_as_function: " << graph_as_function;
      ss << "\nupgrade_legacy: " << upgrade_legacy;
      ss << "\nrestrict_functionalization_to_compiled_nodes: "
         << restrict_functionalization_to_compiled_nodes;
      ss << "\nenable_shape_inference: " << enable_shape_inference;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    // syntax error.
    func (s *ss) mustReadRune() (r rune) {
    	r = s.getRune()
    	if r == eof {
    		s.error(io.ErrUnexpectedEOF)
    	}
    	return
    }
    
    func (s *ss) UnreadRune() error {
    	s.rs.UnreadRune()
    	s.atEOF = false
    	s.count--
    	return nil
    }
    
    func (s *ss) error(err error) {
    	panic(scanError{err})
    }
    
    func (s *ss) errorString(err string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	}
    
    	ss = append(ss, "Locations")
    	for _, l := range p.Location {
    		ss = append(ss, l.string())
    	}
    
    	ss = append(ss, "Mappings")
    	for _, m := range p.Mapping {
    		ss = append(ss, m.string())
    	}
    
    	return strings.Join(ss, "\n") + "\n"
    }
    
    // string dumps a text representation of a mapping. Intended mainly
    // for debugging purposes.
    func (m *Mapping) string() string {
    	bits := ""
    	if m.HasFunctions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    		rb.out = append(rb.out, x...)
    		return false
    	}
    	buf := rb.out[p:]
    	rb.out = rb.out[:p]
    	decomposeToLastBoundary(rb)
    	if s := rb.ss.next(info); s == ssStarter {
    		rb.doFlush()
    		rb.ss.first(info)
    	} else if s == ssOverflow {
    		rb.doFlush()
    		rb.insertCGJ()
    		rb.ss = 0
    	}
    	rb.insertUnsafe(inputBytes(buf), 0, info)
    	return true
    }
    
    func appendQuick(rb *reorderBuffer, i int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/norm/iter.go

    		if i.info.ccc == 0 {
    			break
    		}
    		if s := i.rb.ss.next(i.info); s == ssOverflow {
    			i.next = nextCGJDecompose
    			break
    		}
    	}
    	// new segment or too many combining characters: exit normalization
    	return i.buf[:i.rb.flushCopy(i.buf[:])]
    }
    
    func nextCGJDecompose(i *Iter) []byte {
    	i.rb.ss = 0
    	i.rb.insertCGJ()
    	i.next = nextDecomposed
    	i.rb.ss.first(i.info)
    	buf := doNormDecomposed(i)
    	return buf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  9. pkg/apis/core/fuzzer/fuzzer.go

    			http.Scheme = "x" + http.Scheme // can't be blank
    		},
    		func(ss *core.ServiceSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(ss) // fuzz self without calling this function again
    			if len(ss.Ports) == 0 {
    				// There must be at least 1 port.
    				ss.Ports = append(ss.Ports, core.ServicePort{})
    				c.Fuzz(&ss.Ports[0])
    			}
    			for i := range ss.Ports {
    				switch ss.Ports[i].TargetPort.Type {
    				case intstr.Int:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		rb.out = append(rb.out, x...)
    		return false
    	}
    	buf := rb.out[p:]
    	rb.out = rb.out[:p]
    	decomposeToLastBoundary(rb)
    	if s := rb.ss.next(info); s == ssStarter {
    		rb.doFlush()
    		rb.ss.first(info)
    	} else if s == ssOverflow {
    		rb.doFlush()
    		rb.insertCGJ()
    		rb.ss = 0
    	}
    	rb.insertUnsafe(inputBytes(buf), 0, info)
    	return true
    }
    
    func appendQuick(rb *reorderBuffer, i int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top