Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for clen (0.04 sec)

  1. hack/local-up-cluster.sh

        fi
        node_port_range=""
        if [[ "${NODE_PORT_RANGE}" != "" ]] ; then
            node_port_range="--service-node-port-range=${NODE_PORT_RANGE}"
        fi
    
        if [[ "${REUSE_CERTS}" != true ]]; then
          # Clean previous dynamic certs
          # This file is owned by root, so we can't always overwrite it (depends if
          # we run the script as root or not). Let's remove it, that is something we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * be used.
         *
         * @deprecated [SSLSocketFactory] does not expose its [X509TrustManager], which is a field that
         *     OkHttp needs to build a clean certificate chain. This method instead must use reflection
         *     to extract the trust manager. Applications should prefer to call
         *     `sslSocketFactory(SSLSocketFactory, X509TrustManager)`, which avoids such reflection.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		pathParts := splitPath(requestInfo.Path)
    		// only match /apis/<group>/<version>
    		// only registered under /apis
    		if len(pathParts) == 3 {
    			r.versionDiscoveryHandler.ServeHTTP(w, req)
    			return
    		}
    		// only match /apis/<group>
    		if len(pathParts) == 2 {
    			r.groupDiscoveryHandler.ServeHTTP(w, req)
    			return
    		}
    
    		r.delegate.ServeHTTP(w, req)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    			break
    		}
    	}
    	countStaleLB = len(proxier.mapStaleLoadbalancers)
    	if countStaleLB > 0 {
    		klog.V(3).InfoS("Stale loadbalancers still remaining", "LB Count", countStaleLB, "stale_lb_ids", proxier.mapStaleLoadbalancers)
    	}
    }
    
    func getNetworkName(hnsNetworkName string) (string, error) {
    	if len(hnsNetworkName) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

    // (nested) tf.while one-by-one, as each (nested) tf.while creates a unique
    // (root) frame.  Note that we don't separate while loops belonging to the same
    // nested while, as there is no clean cut for separating them in the topological
    // order.
    Status DeadnessAnalysisImpl::Populate(bool enable_optimistic) {
      std::vector<string> unreachable_nodes;
      // Compute the loop structure of the graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		}
    	}
    	if len(selectedObjects) == 0 {
    		// Ensure that we never return a nil Items pointer in the result for consistency.
    		listVal.Set(reflect.MakeSlice(listVal.Type(), 0, 0))
    	} else {
    		// Resize the slice appropriately, since we already know that size of result set
    		listVal.Set(reflect.MakeSlice(listVal.Type(), len(selectedObjects), len(selectedObjects)))
    		span.AddEvent("Resized result")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				instance_id = parseInt(instances.push({}),10) - 1;
    				// store the jstree instance id to the container element
    				$.data(this, "jstree_instance_id", instance_id);
    				// clean up all plugins
    				b.plugins = $.isArray(b.plugins) ? b.plugins : $.jstree.defaults.plugins.slice();
    				b.plugins.unshift("core");
    				// only unique plugins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	// If all metrics are invalid or some are invalid and we would scale down,
    	// return an error and set the condition of the hpa based on the first invalid metric.
    	// Otherwise set the condition as scaling active as we're going to scale
    	if invalidMetricsCount >= len(metricSpecs) || (invalidMetricsCount > 0 && replicas < specReplicas) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    			continue
    		} else if len(paramRef.Name) > 0 && p.GetName() != paramRef.Name {
    			continue
    		} else if len(paramRef.Namespace) > 0 && p.GetNamespace() != paramRef.Namespace {
    			continue
    		} else if !paramIsClusterScoped && len(paramRef.Namespace) == 0 && p.GetNamespace() != v1.NamespaceDefault {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    	if !f.fi.dir {
    		return nil, fs.ErrInvalid
    	}
    	var fis []fs.FileInfo
    
    	limit := f.entpos + count
    	if count <= 0 || limit > len(f.fi.ents) {
    		limit = len(f.fi.ents)
    	}
    	for ; f.entpos < limit; f.entpos++ {
    		fis = append(fis, f.fi.ents[f.entpos])
    	}
    
    	if len(fis) == 0 && count > 0 {
    		return fis, io.EOF
    	} else {
    		return fis, nil
    	}
    }
    
    type fakeFS map[string]*fakeFileInfo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top