Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for BHelper (0.34 sec)

  1. cluster/gce/gci/configure-helper.sh

      echo -n "${out}" | xxd -r -p | base64 -w 0
    }
    
    # Helper for configuring iptables rules for metadata server.
    #
    # $1 is the command flag (-I or -D).
    # $2 is the firewall action (LOG or REJECT).
    # $3 is the prefix for log output.
    # $4 is "!" to optionally invert the uid range.
    function gce-metadata-fw-helper {
      local -r command="$1"
      local action="$2"
      local -r prefix="$3"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    	}
    	// Unsyncable monitor removed
    	assertMonitors(t, gc, "pods", "deployments")
    }
    
    func assertMonitors(t *testing.T, gc *GarbageCollector, resources ...string) {
    	t.Helper()
    	expected := sets.NewString(resources...)
    	actual := sets.NewString()
    	for m := range gc.dependencyGraphBuilder.monitors {
    		actual.Insert(m.Resource)
    	}
    	if !actual.Equal(expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      source "${KUBE_ROOT}/cluster/gce/${NODE_OS_DISTRIBUTION}/node-helper.sh"
    else
      echo "Cannot operate on cluster using node os distro: ${NODE_OS_DISTRIBUTION}" >&2
      exit 1
    fi
    
    source "${KUBE_ROOT}/cluster/gce/windows/node-helper.sh"
    
    if [[ "${MASTER_OS_DISTRIBUTION}" == "trusty" || "${MASTER_OS_DISTRIBUTION}" == "gci" || "${MASTER_OS_DISTRIBUTION}" == "ubuntu" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	if obj.Spec.VolumeName != "" {
    		accessModes = helper.GetAccessModesAsString(obj.Status.AccessModes)
    		storage = obj.Status.Capacity[api.ResourceStorage]
    		capacity = storage.String()
    	}
    
    	if obj.Spec.VolumeMode != nil {
    		volumeMode = string(*obj.Spec.VolumeMode)
    	}
    
    	row.Cells = append(row.Cells, obj.Name, string(phase), obj.Spec.VolumeName, capacity, accessModes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    	t.Helper()
    	return newControllerFromClientWithClock(ctx, t, kubeClient, resyncPeriod, realClock)
    }
    
    func newControllerFromClientWithClock(ctx context.Context, t *testing.T, kubeClient clientset.Interface, resyncPeriod controller.ResyncPeriodFunc, clock clock.WithTicker) (*Controller, informers.SharedInformerFactory) {
    	t.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      std::string GetName(OpOrVal op_or_val) override {
        DCHECK(false) << "Unimplemented";
        return "";
      }
    
      const FunctionLibraryDefinition& flib_;
    };
    
    // Stateful helper class to import a TensorFlow model into an MLIR Module.
    //
    // This is the base class that contains common utilities shared between the
    // GraphDef importer and SavedModel importer.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    	t.Helper()
    	expectSyncDaemonSetsWithError(t, manager, ds, podControl, expectedCreates, expectedDeletes, expectedEvents, nil)
    }
    
    func expectSyncDaemonSetsWithError(t *testing.T, manager *daemonSetsController, ds *apps.DaemonSet, podControl *fakePodControl, expectedCreates, expectedDeletes int, expectedEvents int, expectedError error) {
    	t.Helper()
    	key, err := controller.KeyFunc(ds)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    			numCanSelect++
    		} else if canBlock {
    			// Select needs to communicate with another goroutine.
    			cas := &info[helpers[x.Choose(len(helpers))]]
    			helper = cas.helper
    			cas.canSelect = true
    			numCanSelect++
    		}
    
    		// Permute cases and case info.
    		// Doing too much here makes the exhaustive loop
    		// too exhausting, so just do two swaps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    }
    
    func newGatewayProxy() *model.Proxy {
    	return &model.Proxy{Type: model.Router, Metadata: &model.NodeMetadata{}}
    }
    
    // Helper function to extract TLS context from a cluster
    func getTLSContext(t *testing.T, c *cluster.Cluster) *tls.UpstreamTlsContext {
    	t.Helper()
    	if c.TransportSocket == nil {
    		return nil
    	}
    	tlsContext := &tls.UpstreamTlsContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return pool_params;
      }
    
      return std::nullopt;
    }
    
    namespace {
    
    using ::mlir::tf_saved_model::kTfSavedModelExportedNamesAttr;
    using ::mlir::tf_saved_model::kTfSavedModelIndexPathAttr;
    
    // Helper struct that wraps inputs/outputs of a single SignatureDef.
    struct SignatureDefData {
      // Note, we are using maps here to make order deterministic
      // for easily testing only.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top