Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CUSTOM (0.29 sec)

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

    						{
    							Port: &networking.PortSelector{
    								Number: 8080,
    							},
    							Tls: &networking.ClientTLSSettings{
    								Mode: networking.ClientTLSSettings_ISTIO_MUTUAL,
    								Sni:  "custom.sni.com",
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	mesh := testMesh()
    	mesh.EnableAutoMtls.Value = true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    			for {
    				select {
    				case ch <- m:
    					return true
    				case <-ctx.Done():
    					return false
    				}
    			}
    		})
    	}()
    	return ch
    }
    
    // minioNodeCollector is the Custom Collector
    //
    //msgp:ignore minioNodeCollector
    type minioNodeCollector struct {
    	metricsGroups []*MetricsGroupV2
    	desc          *prometheus.Desc
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	}
    	for _, obj := range objects {
    		if c.HasActiveRules(obj.ObjectName, true) {
    			return true
    		}
    	}
    	return false
    }
    
    // isStandardHeader returns true if header is a supported header and not a custom header
    func isStandardHeader(matchHeaderKey string) bool {
    	return equals(matchHeaderKey, standardHeaders...)
    }
    
    // returns whether object version is a deletemarker and if object qualifies for replication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top