Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for cleanAll (0.09 sec)

  1. pilot/pkg/networking/core/cluster_builder.go

    	// TODO: This is not foolproof - if instance is part of multiple services listening on same port,
    	// choice of inbound cluster is arbitrary. So the connection pool settings may not apply cleanly.
    	cfg := proxy.SidecarScope.DestinationRule(model.TrafficDirectionInbound, proxy, instance.Service.Hostname).GetRule()
    	if cfg != nil {
    		destinationRule := CastDestinationRule(cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    	if err := req.ParseForm(); err != nil {
    		w.WriteHeader(http.StatusBadRequest)
    		_, _ = w.Write([]byte("Failed to parse request\n"))
    		return
    	}
    	if req.Form.Get("clear") != "" {
    		s.Cache.ClearAll()
    		_, _ = w.Write([]byte("Cache cleared\n"))
    		return
    	}
    	if req.Form.Get("sizes") != "" {
    		snapshot := s.Cache.Snapshot()
    		raw := make(map[string]int, len(snapshot))
    		totalSize := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    		t.Fatalf("http client error: %v", err)
    	}
    	_, err = io.Copy(io.Discard, res.Body)
    	if err != nil {
    		t.Fatalf("client body read error: %v", err)
    	}
    	res.Body.Close()
    
    	// Force child to exit cleanly.
    	Post(fmt.Sprintf("http://%s/quit", ln.Addr()), "", nil)
    	child.Wait()
    
    	rx := regexp.MustCompile(`\b(n64:)?sendfile(64)?\(`)
    	out := buf.String()
    	if !rx.MatchString(out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	var wg sync.WaitGroup
    	// We use bgrun and immediately wait for it instead of calling run() synchronously.
    	// This executes all jobs through the bgwork channel and allows the process
    	// to exit cleanly in case an error occurs.
    	bgrun(&wg, dir, compile...)
    	bgwait(&wg)
    
    	// Compile the files.
    	for _, p := range sfiles {
    		// Assembly file for a Go package.
    		compile := asmArgs[:len(asmArgs):len(asmArgs)]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. cmd/iam.go

    	sys.iamRefreshInterval = iamRefreshInterval
    	// Initialize IAM store
    	sys.initStore(objAPI, etcdClient)
    	sys.Unlock()
    
    	retryCtx, cancel := context.WithCancel(ctx)
    
    	// Indicate to our routine to exit cleanly upon return.
    	defer cancel()
    
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	// Migrate storage format if needed.
    	for {
    		// Migrate IAM configuration, if necessary.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    // certificate structs in this file.
    //
    // Notably, we include issuer as an asn1.RawValue, mirroring the behavior of
    // tbsCertificate and allowing raw (unparsed) subjects to be passed cleanly.
    type certificateList struct {
    	TBSCertList        tbsCertificateList
    	SignatureAlgorithm pkix.AlgorithmIdentifier
    	SignatureValue     asn1.BitString
    }
    
    type tbsCertificateList struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        }
        auto value = *attr.value_begin<APInt>();
        return value.getSExtValue() == 1;
      }
    };
    
    // Maps the following representations of AvgPool in MHLO into a tf.AvgPool{3D}
    // operation when they cleanly map to 2D or 3D average pool with VALID or SAME
    // padding:
    // * div(reduce_sum_window(x), constant(sizeof(window)))
    // * div(reduce_sum_window(x), reduce_sum_window(constant(1)))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    		// Treat nil slices and empty slices as the same (e.g. clusterIPs).
    		cmpopts.EquateEmpty(),
    	}
    
    	// For allocated fields, we want to be able to compare cleanly whether the
    	// input specified values or not.
    	want := tc.svc.DeepCopy()
    	if tc.expectClusterIPs || tc.expectHeadless {
    		if want.Spec.ClusterIP == "" {
    			want.Spec.ClusterIP = got.Spec.ClusterIP
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    		<-bodyClosed
    	}
    
    	if err != nil && cs.sentEndStream {
    		// If the connection is closed immediately after the response is read,
    		// we may be aborted before finishing up here. If the stream was closed
    		// cleanly on both sides, there is no error.
    		select {
    		case <-cs.peerClosed:
    			err = nil
    		default:
    		}
    	}
    	if err != nil {
    		cs.abortStream(err) // possibly redundant, but harmless
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top