Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for pubs (0.1 sec)

  1. src/cmd/go/internal/work/exec.go

    	return envList("PKG_CONFIG", cfg.DefaultPkgConfig)[0]
    }
    
    // splitPkgConfigOutput parses the pkg-config output into a slice of flags.
    // This implements the shell quoting semantics described in
    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    // substitution and hard-codes the <blank> delimiters instead of reading them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/eviction_test.go

    	testcases := []struct {
    		name     string
    		pdbs     []runtime.Object
    		policies []*policyv1.UnhealthyPodEvictionPolicyType
    		eviction *policy.Eviction
    
    		badNameInURL bool
    
    		expectError   string
    		expectDeleted bool
    		podPhase      api.PodPhase
    		podName       string
    	}{
    		{
    			name: "matching pdbs with no disruptions allowed, pod running",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. samples/bookinfo/src/details/details.rb

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    require 'webrick'
    require 'json'
    require 'net/http'
    
    if ARGV.length < 1 then
        puts "usage: #{$PROGRAM_NAME} port"
        exit(-1)
    end
    
    port = Integer(ARGV[0])
    
    server = WEBrick::HTTPServer.new(
        :BindAddress => '*',
        :Port => port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    	if s.StatusReporter != nil {
    		s.StatusReporter.RegisterEvent(con.ID(), req.TypeUrl, req.ResponseNonce)
    	}
    
    	shouldRespond := s.shouldRespondDelta(con, req)
    	if !shouldRespond {
    		return nil
    	}
    
    	subs, _ := deltaWatchedResources(nil, req)
    	request := &model.PushRequest{
    		Full:   true,
    		Push:   con.proxy.LastPushContext,
    		Reason: model.NewReasonStats(model.ProxyRequest),
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/productpage.py

            }
        ]
    
    
    def getProduct(product_id):
        products = getProducts()
        if product_id + 1 > len(products):
            return None
        else:
            return products[product_id]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      local -r cert_create_debug_output=$(mktemp "${KUBE_TEMP}/cert_create_debug_output.XXX")
      # Note: This was heavily cribbed from make-ca-cert.sh
      (set -x
        cd "${CERT_DIR}"
        ./easyrsa init-pki
        # this puts the cert into pki/ca.crt and the key into pki/private/ca.key
        # PRIMARY_CN (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --batch "--req-cn=${PRIMARY_CN}@$(date +%s)" build-ca nopass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. RELEASE.md

    *   Adds `beta` hyperparameter to
        [FTRL](https://www.tensorflow.org/api_docs/python/tf/keras/optimizers/Ftrl)
        optimizer classes (Keras and others) to match
        [FTRL paper](https://research.google.com/pubs/archive/41159.pdf).
    *   `Optimizer.__init__` now accepts a `gradient_aggregator` to allow for
        customization of how gradients are aggregated across devices, as well as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    			}
    		}
    	}
    	return queueingStrategy
    }
    
    // addUnschedulableIfNotPresentWithoutQueueingHint inserts a pod that cannot be scheduled into
    // the queue, unless it is already in the queue. Normally, PriorityQueue puts
    // unschedulable pods in `unschedulablePods`. But if there has been a recent move
    // request, then the pod is put in `podBackoffQ`.
    // TODO: This function is called only when p.isSchedulingQueueHintEnabled is false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.WatchListPageSize = storageWatchListPageSize
    	// When etcd loses leader for 3 cycles, it returns error "no leader".
    	// We don't want to terminate all watchers as recreating all watchers puts high load on api-server.
    	// In most of the cases, leader is reelected within few cycles.
    	reflector.MaxInternalErrorRetryDuration = time.Second * 30
    	// since the watch-list is provided by the watch cache instruct
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    			}
    			counterTime++
    		}
    	}
    	return blockLocs
    }
    
    // mergePredecessors takes the end state of each of b's predecessors and
    // intersects them to form the starting state for b. It puts that state
    // in blockLocs[b.ID].startState, and fills state.currentState with it.
    // It returns the start state and whether this is changed from the
    // previously approximated value of startState for this block.  After
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top