Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 292 for External (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	if !ok {
    		return schema.GroupVersionKind{}, fmt.Errorf("cannot find the storage version kind for %v", reflect.TypeOf(object))
    	}
    	return gvk, nil
    }
    
    // GetResourceKind returns the external group version kind registered for the given storage
    // object. If the storage object is a subresource and has an override supplied for it, it returns
    // the group version kind supplied in the override.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/asm5.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package arm
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"math"
    	"sort"
    )
    
    // ctxt5 holds state while assembling a single function.
    // Each function gets a fresh ctxt5.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        mlir::tf_device::ClusterOp device_cluster,
        const llvm::SmallSetVector<Operation*, 4>& cluster_ops) {
      // If there are any dynamic outputs, get all of the operands which are defined
      // external to `cluster_ops`.
      bool has_dynamic_outputs = HasDynamicOutputs(cluster_ops);
      if (has_dynamic_outputs) {
        return GetAllExternalOperands(cluster_ops);
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		secondaryValue, secondaryExists := node.Labels[r.secondaryKey]
    
    		if !primaryExists {
    			// The primary label key does not exist. This should not happen
    			// within our supported version skew range, when no external
    			// components/factors modifying the node object. Ignore this case.
    			continue
    		}
    		if secondaryExists && primaryValue != secondaryValue {
    			// Secondary label exists, but not consistent with the primary
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/replica_calculator_test.go

    		if !wasList {
    			return true, nil, fmt.Errorf("expected a list-for action, got %v instead", action)
    		}
    
    		if tc.metric == nil {
    			return true, nil, fmt.Errorf("no external metrics specified in test client")
    		}
    
    		assert.Equal(t, tc.metric.name, listAction.GetResource().Resource, "the metric requested should have matched the one specified")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    		// If we have a valid certificate, use that to fetch CSRs. Otherwise use the bootstrap
    		// credentials. In the future it would be desirable to change the behavior of bootstrap
    		// to always fall back to the external bootstrap credentials when such credentials are
    		// provided by a fundamental trust system like cloud VM identity or an HSM module.
    		config := certConfig
    		if current != nil {
    			config = clientConfig
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. cmd/iam.go

    	"github.com/minio/minio/internal/arn"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/color"
    	"github.com/minio/minio/internal/config"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	idplugin "github.com/minio/minio/internal/config/identity/plugin"
    	xtls "github.com/minio/minio/internal/config/identity/tls"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// must be specified.
    	//
    	// The `host` should not refer to a service running in the cluster; use
    	// the `service` field instead. The host might be resolved via external
    	// DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
    	// in-cluster DNS as that would be a layering violation). `host` may
    	// also be an IP address.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // must be specified.
      //
      // The `host` should not refer to a service running in the cluster; use
      // the `service` field instead. The host might be resolved via external
      // DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
      // in-cluster DNS as that would be a layering violation). `host` may
      // also be an IP address.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"internal/goarch"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // The code in this file implements stack trace walking for all architectures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top