Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for blockn (6.07 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        body.push_back(new Block);
        Block& block = body.back();
        Operation* controlled_op =
            parser.parseGenericOperation(&block, block.begin());
        if (!controlled_op) return failure();
        OpBuilder builder(parser.getBuilder().getContext());
        builder.setInsertionPointToEnd(&block);
        builder.create<YieldOp>(controlled_op->getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Rearranges data from depth into blocks of spatial data.
        This is the reverse transformation of SpaceToDepth. More specifically,
        this op outputs a copy of the input tensor where values from the `depth`
        dimension are moved in spatial blocks to the `height` and `width`
        dimensions. The attr `block_size` indicates the input block size and how
        the data is moved.
       }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

          unique-uuid-bind-mount "${mountpoint}" "${actual_device}"
        fi
      elif [[ "${format}" == "block" ]]; then
        local symdir="${UUID_BLOCK_PREFIX}-${interface}-block"
        safe-block-symlink "${ssd}" "${symdir}"
      else
        echo "Disk format must be either fs or block, got ${format}"
      fi
    }
    
    # Local ssds, if present, are mounted or symlinked to their appropriate
    # locations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    requirements:\n 1. certificate must contain one or more PEM blocks.\n 2. All PEM blocks must have the \"CERTIFICATE\" label, contain no headers, and the encoded data\n  must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.\n 3. Non-PEM content may appear before or after the \"CERTIFICATE\" PEM blocks and is unvalidated,\n  to allow for explanatory text as described in section 5.2 of RFC7468.\n\nIf more than one PEM block is present, and the definition of the requested spec.signerName...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    	f.Lock.Lock()
    	defer f.Lock.Unlock()
    	f.InterfaceUsedCount++
    	return f.PreferredResources, f.Error
    }
    
    func (f *fakeServerResources) setPreferredResources(resources []*metav1.APIResourceList, err error) {
    	f.Lock.Lock()
    	defer f.Lock.Unlock()
    	f.PreferredResources = resources
    	f.Error = err
    }
    
    func (f *fakeServerResources) getInterfaceUsedCount() int {
    	f.Lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. src/reflect/value.go

    			// match the one used in makeMethodValue.
    			return methodValueCallCodePtr()
    		}
    		p := v.pointer()
    		// Non-nil func value points at data block.
    		// First word of data block is actual code.
    		if p != nil {
    			p = *(*unsafe.Pointer)(p)
    		}
    		return uintptr(p)
    	case Slice:
    		return uintptr((*unsafeheader.Slice)(v.ptr).Data)
    	case String:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    // After setup is done, create symbolic links on both global map path and pod
    // device map path. Once symbolic links are created, take fd lock by
    // loopback for the device to avoid silent volume replacement. This lock
    // will be released once no one uses the device.
    // If all steps are completed, the volume is marked as mounted.
    func (og *operationGenerator) GenerateMapVolumeFunc(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    		t.Fatalf("error was not an UnhandledCriticalExtension: %v", err)
    	}
    }
    
    func certificateFromPEM(pemBytes string) (*Certificate, error) {
    	block, _ := pem.Decode([]byte(pemBytes))
    	if block == nil {
    		return nil, errors.New("failed to decode PEM")
    	}
    	return ParseCertificate(block.Bytes)
    }
    
    func testVerify(t *testing.T, test verifyTest, useSystemRoots bool) {
    	opts := VerifyOptions{
    		Intermediates: NewCertPool(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      }
    
      // check that rank of input_type >= block_rank + 1
      if (input_type.hasRank() && input_type.getRank() < 1 + block_rank) {
        return op.emitOpError() << "requires rank of input >= 1 + rank of block";
      }
    
      ElementsAttr block_shape_attr = nullptr;
      ElementsAttr paddings_attr = nullptr;
    
      // Check that block_shape[*] >= 1.
      if (matchPattern(op.getBlockShape(), m_Constant(&block_shape_attr))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    DER-formatted X.509 certificates.\n\nThe data must consist only of PEM certificate blocks that parse as valid X.509 certificates.  Each certificate must include a basic constraints extension with the CA bit set.  The API server will reject objects that contain duplicate certificates, or that use PEM block headers.\n\nUsers of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top