Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 241 for probing (0.23 sec)

  1. src/cmd/go/internal/vcweb/hg.go

    		}()
    
    		u, err := url.Parse(strings.TrimSpace(line))
    		if err != nil {
    			logger.Printf("%v: %v", cmd, err)
    			http.Error(w, err.Error(), http.StatusBadGateway)
    			return
    		}
    		logger.Printf("proxying hg request to %s", u)
    		httputil.NewSingleHostReverseProxy(u).ServeHTTP(w, req)
    	})
    
    	return handler, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/README.md

    # Building `sys/unix`
    
    The sys/unix package provides access to the raw system call interface of the
    underlying operating system. See: https://godoc.org/golang.org/x/sys/unix
    
    Porting Go to a new architecture/OS combination or adding syscalls, types, or
    constants to an existing architecture/OS pair requires some manual effort;
    however, there are tools that automate much of the process.
    
    ## Build Systems
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/testing/defaults/defaults.go

    			{Name: names.ImageLocality, Weight: 1},
    		},
    	},
    	Reserve: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.VolumeBinding},
    		},
    	},
    	PreBind: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.VolumeBinding},
    		},
    	},
    	Bind: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.DefaultBinder},
    		},
    	},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/types.go

    	Reserve PluginSet
    
    	// Permit is a list of plugins that control binding of a Pod. These plugins can prevent or delay binding of a Pod.
    	Permit PluginSet
    
    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    	// Bind is a list of plugins that should be invoked at "Bind" extension point of the scheduling framework.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// cache size accordingly.
      void RemoveBlock(BlockMap::iterator entry) ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_);
    
      /// The cache pruning thread that removes files with expired blocks.
      std::unique_ptr<TF_Thread, std::function<void(TF_Thread*)>> pruning_thread_;
    
      /// Notification for stopping the cache pruning thread.
      absl::Notification stop_pruning_thread_;
    
      /// Guards access to the block map, LRU list, and cached byte count.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:46:34 UTC 2020
    - 10.6K bytes
    - Viewed (0)
  6. docs/minio-limits.md

    > NOTE:  While MinIO does not implement an upper boundary on buckets, your cluster's hardware has natural limits that depend on the workload and its scaling patterns. We strongly recommend [MinIO SUBNET](https://min.io/pricing) for architecture and sizing guidance for your production use case.
    
    ## List of Amazon S3 API's not supported on MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    	if !state.ShouldRecordPluginMetrics() {
    		return pl.PreBind(ctx, state, pod, nodeName)
    	}
    	startTime := time.Now()
    	status := pl.PreBind(ctx, state, pod, nodeName)
    	f.metricsRecorder.ObservePluginDurationAsync(metrics.PreBind, pl.Name(), status.Code().String(), metrics.SinceInSeconds(startTime))
    	return status
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	HTTPSProxy string
    
    	// NoProxy represents the NO_PROXY or no_proxy environment
    	// variable. It specifies a string that contains comma-separated values
    	// specifying hosts that should be excluded from proxying. Each value is
    	// represented by an IP address prefix (1.2.3.4), an IP address prefix in
    	// CIDR notation (1.2.3.4/8), a domain name, or a special DNS label (*).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. Makefile

    test-delete-replication:
    	@(env bash $(PWD)/docs/bucket/replication/delete-replication.sh)
    
    test-delete-marker-proxying:
    	@(env bash $(PWD)/docs/bucket/replication/test_del_marker_proxying.sh)
    
    test-replication: install-race test-replication-2site test-replication-3site test-delete-replication test-sio-error test-delete-marker-proxying ## verify multi site replication
    	@echo "Running tests for replicating three sites"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//   the claim is assumed to be allocated.
    	// - PreBind for pod B is called first, tries to update reservedFor and
    	//   fails because the claim is not really allocated yet.
    	//
    	// We could avoid the ordering problem by allowing either pod A or pod B
    	// to set the allocation. But that is more complicated and leads to another
    	// problem:
    	// - Pod A and B get scheduled as above.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top