Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 829 for OUT (0.25 sec)

  1. src/internal/concurrent/hashtriemap.go

    		}
    		// We have to start over.
    		i.mu.Unlock()
    	}
    	// N.B. This lock is held from when we broke out of the outer loop above.
    	// We specifically break this out so that we can use defer here safely.
    	// One option is to break this out into a new function instead, but
    	// there's so much local iteration state used below that this turns out
    	// to be cleaner.
    	defer i.mu.Unlock()
    
    	var oldEntry *entry[K, V]
    	if n != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	}
    	sort.Ints(priorities)
    
    	out := make([]*endpoint.LocalityLbEndpoints, len(priorityMap))
    	for i, priority := range priorities {
    		out[i] = util.CloneLocalityLbEndpoint(ep.LocalityLbEndpoints)
    		out[i].LbEndpoints = nil
    		out[i].Priority = uint32(priority)
    		var weight uint32
    		for _, index := range priorityMap[priority] {
    			out[i].LbEndpoints = append(out[i].LbEndpoints, ep.LocalityLbEndpoints.LbEndpoints[index])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/bootstrap/instance_test.go

    			regexReplacement{
    				pattern:     regexp.MustCompile(`"region": ".+"`),
    				replacement: []byte("\"region\": \"\""),
    			})
    	}
    
    	out := in
    	for _, r := range replacements {
    		out = r.pattern.ReplaceAll(out, r.replacement)
    	}
    	return out
    }
    
    func loadProxyConfig(base, out string, _ *testing.T) (*meshconfig.ProxyConfig, error) {
    	content, err := os.ReadFile("testdata/" + base + ".proxycfg")
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/certs.go

    func newCmdCertsUtility(out io.Writer) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:     "certs",
    		Aliases: []string{"certificates"},
    		Short:   "Commands related to handling kubernetes certificates",
    		Run:     cmdutil.SubCmdRun(),
    	}
    
    	cmd.AddCommand(newCmdCertsRenewal(out))
    	cmd.AddCommand(newCmdCertsExpiration(out, kubeadmconstants.KubernetesDir))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/distpack/pack.go

    			if f.Name != "" {
    				extra = " " + f.Name
    			}
    			log.Fatalf("writing %s%s: %v", name, extra, err)
    		}
    	}()
    
    	zw := zip.NewWriter(out)
    	zw.RegisterCompressor(zip.Deflate, func(out io.Writer) (io.WriteCloser, error) {
    		return flate.NewWriter(out, flate.BestCompression)
    	})
    	for _, f = range a.Files {
    		h := check(zip.FileInfoHeader(f.Info()))
    		h.Name = f.Name
    		h.Method = zip.Deflate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        }
    
        for (CharSink out : BROKEN_SINKS) {
          int suppressed = runSuppressionFailureTest(newNormalCharSource(), out);
          assertEquals(0, suppressed);
    
          suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out);
          assertEquals(1, suppressed);
        }
    
        for (CharSource in : BROKEN_SOURCES) {
          for (CharSink out : BROKEN_SINKS) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                        CopyUtil.copy(in, out);
                    } catch (final IOException e) {
                        throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, e);
                    }
                }
            }).execute()) {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certlist.go

    func leafCertificates(c Certificates) (Certificates, error) {
    	certTree, err := c.AsMap().CertTree()
    	if err != nil {
    		return nil, err
    	}
    
    	var out Certificates
    	for _, leafCertificates := range certTree {
    		out = append(out, leafCertificates...)
    	}
    	return out, nil
    }
    
    func createKeyAndCSR(kubeadmConfig *kubeadmapi.InitConfiguration, cert *KubeadmCert) error {
    	if kubeadmConfig == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    	defer c.networkManager.RUnlock()
    
    	// Merge all the gateways into a single set to eliminate duplicates.
    	out := make(model.NetworkGatewaySet)
    	for _, gateways := range c.networkGatewaysBySvc {
    		out.Merge(gateways)
    	}
    	for _, gateways := range c.gatewaysFromResource {
    		out.Merge(gateways)
    	}
    
    	unsorted := out.UnsortedList()
    	return model.SortGateways(unsorted)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/encoding/gob/encoder_test.go

    	enc := NewEncoder(b)
    	err := enc.Encode(in)
    	if err != nil {
    		t.Fatal("encode:", err)
    	}
    	dec := NewDecoder(b)
    	out := make(Bug1StructMap)
    	err = dec.Decode(&out)
    	if err != nil {
    		t.Fatal("decode:", err)
    	}
    	if !reflect.DeepEqual(in, out) {
    		t.Errorf("mismatch: %v %v", in, out)
    	}
    }
    
    func TestGobMapInterfaceEncode(t *testing.T) {
    	m := map[string]any{
    		"up": uintptr(0),
    		"i0": []int{-1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top