Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for star (0.21 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    spot
    
    // srl : 2015-05-07 InterNetX, Corp
    srl
    
    // stada : 2014-11-13 STADA Arzneimittel AG
    stada
    
    // staples : 2015-07-30 Staples, Inc.
    staples
    
    // star : 2015-01-08 Star India Private Limited
    star
    
    // statebank : 2015-03-12 STATE BANK OF INDIA
    statebank
    
    // statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company
    statefarm
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    sidecar.istio.io/inject: "true" # Define the security context for the pod. # If unset, this will be automatically set to the minimum privileges required to bind to port 80 and 443. # On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl. securityContext: ~ containerSecurityCon: ~ service: # Type of service. Set to "None" to disable the service entirely type: LoadBalancer ports: - name: status-port port: 15021 protocol: TCP targetPort: 15021 - name: http2 port: 80 protocol:...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  3. cmd/metrics-v2.go

    					Value:          stat.Failed.LastMinute.Count,
    					VariableLabels: map[string]string{"endpoint": stat.Endpoint},
    				})
    				ml = append(ml, MetricV2{
    					Description:    getRepFailedBytesLastHourMD(clusterMetricNamespace),
    					Value:          float64(stat.Failed.LastHour.Bytes),
    					VariableLabels: map[string]string{"endpoint": stat.Endpoint},
    				})
    				ml = append(ml, MetricV2{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    		return
    	}
    
    	stat, err := GlobalKMS.Stat(ctx)
    	if err != nil {
    		writeCustomErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInternalError), err.Error(), r.URL)
    		return
    	}
    
    	status := madmin.KMSStatus{
    		Name:         stat.Name,
    		DefaultKeyID: stat.DefaultKey,
    		Endpoints:    make(map[string]madmin.ItemState, len(stat.Endpoints)),
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  5. cmd/object-handlers.go

    						}
    
    						// For providing ranged content
    						start, rangeLen, err := rs.GetOffsetLength(ci.Size)
    						if err != nil {
    							start, rangeLen = 0, ci.Size
    						}
    
    						// Set content length.
    						w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    						if rs != nil {
    							contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, ci.Size)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Start Crawling */
        public static final String LABELS_wizard_start_crawling_title = "{labels.wizard_start_crawling_title}";
    
        /** The key of the message: Crawler */
        public static final String LABELS_wizard_start_crawler_title = "{labels.wizard_start_crawler_title}";
    
        /** The key of the message: To click "Start Crawling" button, you can start a crawling now. */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_could_not_find_log_file = "{errors.could_not_find_log_file}";
    
        /** The key of the message: Failed to start a crawl process. */
        public static final String ERRORS_failed_to_start_crawl_process = "{errors.failed_to_start_crawl_process}";
    
        /** The key of the message: Invalid JSP file. */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    		}
    	}
    	for p, stat := range sinfo.PolicyStats {
    		for dID, st := range stat {
    			if st.PolicyMismatch || opts.Entity == madmin.SRPolicyEntity {
    				if _, ok := info.PolicyStats[p]; !ok {
    					info.PolicyStats[p] = make(map[string]madmin.SRPolicyStatsSummary, numSites)
    				}
    				info.PolicyStats[p][dID] = st.SRPolicyStatsSummary
    			}
    		}
    	}
    	for p, stat := range sinfo.ILMExpiryRulesStats {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *       captured by any of the steps in the pipeline are closed.
     * </ol>
     *
     * <h3>Starting a pipeline</h3>
     *
     * Start a {@code ClosingFuture} pipeline {@linkplain #submit(ClosingCallable, Executor) from a
     * callable block} that may capture objects for later closing. To start a pipeline from a {@link
     * ListenableFuture} that doesn't create resources that should be closed later, you can use {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org/codehaus/plexus/util/xml/pull/XmlPullParser.class package org.codehaus.plexus.util.xml.pull; public abstract interface XmlPullParser { public static final String NO_NAMESPACE = ; public static final int START_DOCUMENT = 0; public static final int END_DOCUMENT = 1; public static final int START_TAG = 2; public static final int END_TAG = 3; public static final int TEXT = 4; public static final int CDSECT = 5; public static final int ENTITY_REF = 6; public static final int IGNORABLE_WHITESPACE = 7;...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
Back to top