Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for layers (0.22 sec)

  1. pkg/kubelet/kubelet_pods.go

    			} else if !subPathExists {
    				// Create the sub path now because if it's auto-created later when referenced, it may have an
    				// incorrect ownership and mode. For example, the sub path directory must have at least g+rwx
    				// when the pod specifies an fsGroup, and if the directory is not created here, Docker will
    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // doesn't have static shape, we skip the shape check below.
      if (!input_type.hasStaticShape()) return success();
      // The input should be at least 2D tensor since it will go through fully
      // connected layer.
      if (!input_type.hasRank() || input_type.getRank() < 2)
        return op.emitOpError(
            "the first input operand should have more than 2 dimensions.");
    
      const auto activation_state =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    		return fmt.Errorf("mount options are not supported for this volume type")
    	}
    	return nil
    }
    
    // checkNodeAffinity looks at the PV node affinity, and checks if the node has the same corresponding labels
    // This ensures that we don't mount a volume that doesn't belong to this node
    func checkNodeAffinity(og *operationGenerator, volumeToMount VolumeToMount) error {
    	pv := volumeToMount.VolumeSpec.PersistentVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                dependency mechanism</a>. The default scope is {@code compile}.
                ]]>
              </description>
              <type>String</type>
              <!-- This default has to be enforced at the maven-artifact layer, to allow
                | injection of defaults from <dependencyManagement/>.
                | TODO: how can we document it?
                |-->
              <!-- defaultValue>compile</defaultValue -->
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	core "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/record"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    		Ports: []*pilot_model.Port{{
    			Name:     "http",
    			Protocol: "HTTP",
    			Port:     80,
    		}},
    		Attributes: pilot_model.ServiceAttributes{
    			Namespace: "default",
    			Labels:    map[string]string{"istio.io/persistent-session": "session-cookie"},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			cfgs := tt.gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    // a synchronous manner.
    func mustReplicate(ctx context.Context, bucket, object string, mopts mustReplicateOptions) (dsc ReplicateDecision) {
    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    			for _, pod := range test.pods {
    				cache.AddPod(logger, pod)
    			}
    			var nodes []*v1.Node
    			for _, name := range test.nodes {
    				node := &v1.Node{ObjectMeta: metav1.ObjectMeta{Name: name, Labels: map[string]string{"hostname": name}}}
    				nodes = append(nodes, node)
    				cache.AddNode(logger, node)
    			}
    
    			cs := clientsetfake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		Code:  ErrSiteReplicationIAMConfigMismatch,
    	}
    }
    
    var errSRObjectLayerNotReady = SRError{
    	Cause: fmt.Errorf("object layer not ready"),
    	Code:  ErrServerNotInitialized,
    }
    
    func getSRStateFilePath() string {
    	return srStatePrefix + SlashSeparator + srStateFile
    }
    
    // SRError - wrapped error for site replication.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top