Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for _ignored (0.46 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // + For the SAME padding, we pad top/left side the same as bottom/right
          //   side.
          //
          // In addition, if the padded input size is smaller than the input size,
          // we need to ignore some training elements of the input. We do this by
          // applying negative padding on the right/bottom.
          const int64_t pad_before = padding == tensorflow::Padding::EXPLICIT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Defaults to '/var/run/netns', in minikube/docker/others can be '/var/run/docker/netns'.
    	CniNetnsDir string `protobuf:"bytes,31,opt,name=cniNetnsDir,proto3" json:"cniNetnsDir,omitempty"`
    	// List of namespaces that should be ignored by the CNI plugin.
    	ExcludeNamespaces []string `protobuf:"bytes,9,rep,name=excludeNamespaces,proto3" json:"excludeNamespaces,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage_test.go

    	}
    	return string(*pol)
    }
    
    func fmtIPFamilies(fams []api.IPFamily) string {
    	if fams == nil {
    		return "[]"
    	}
    	return fmt.Sprintf("%v", fams)
    }
    
    // Prove that create ignores IP and IPFamily stuff when type is ExternalName.
    func TestCreateIgnoresIPsForExternalName(t *testing.T) {
    	type testCase struct {
    		name        string
    		svc         *api.Service
    		expectError bool
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			// a[i] = v
    			t := left.X.Type()
    			n := t.NumElem()
    
    			i := s.expr(left.Index) // index
    			if n == 0 {
    				// The bounds check must fail.  Might as well
    				// ignore the actual index and just use zeros.
    				z := s.constInt(types.Types[types.TINT], 0)
    				s.boundsCheck(z, z, ssa.BoundsIndex, false)
    				return
    			}
    			if n != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top