Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 344 for differs (0.1 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/type_attr.mlir

    // CHECK:       custom_options: [ 100, 116, 121, 112, 101, 0, 1, 7, 1, 1, 1, 2, 4, 2, 36, 1 ]
    // CHECK:     } ],
    // CHECK:     name: "main"
    // CHECK:   } ],
    // CHECK:   description: "MLIR Converted.",
    // CHECK:   buffers: [ {
    // CHECK-EMPTY
    // CHECK:   }, {
    // CHECK-EMPTY
    // CHECK:   } ]
    // CHECK: }
    
    func.func @main() -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/BufferCache.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    
    /**
     * Internal API for managing reusable buffers
     * 
     * @author mbechler
     * @internal
     */
    public interface BufferCache {
    
        /**
         * 
         * @return a buffer from the cache, or a new one
         */
        byte[] getBuffer ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_amd64.go

    	// Roughly this means that we can process three buffers in about the same
    	// time we can process one buffer.
    	//
    	// The idea is then to split the buffer in three, CRC the three pieces
    	// separately and then combine the results.
    	//
    	// Combining the results requires precomputed tables, so we must choose a
    	// fixed buffer length to optimize. The longer the length, the faster; but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if !reflect.DeepEqual(origSchema, internalSchema) {
    			t.Fatalf("original and result differ: %v", cmp.Diff(origSchema, internalSchema))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/vet/main.go

    	"golang.org/x/tools/go/analysis/passes/cgocall"
    	"golang.org/x/tools/go/analysis/passes/composite"
    	"golang.org/x/tools/go/analysis/passes/copylock"
    	"golang.org/x/tools/go/analysis/passes/defers"
    	"golang.org/x/tools/go/analysis/passes/directive"
    	"golang.org/x/tools/go/analysis/passes/errorsas"
    	"golang.org/x/tools/go/analysis/passes/framepointer"
    	"golang.org/x/tools/go/analysis/passes/httpresponse"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/lazy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package meta
    
    import (
    	"sync"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // lazyObject defers loading the mapper and typer until necessary.
    type lazyObject struct {
    	loader func() (RESTMapper, error)
    
    	lock   sync.Mutex
    	loaded bool
    	err    error
    	mapper RESTMapper
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_with_no_inputs.mlir

    // CHECK-NEXT:    inputs: [  ],
    // CHECK-NEXT:    outputs: [ 0 ],
    // CHECK-NEXT:    operators: [  ],
    // CHECK-NEXT:    name: "main"
    // CHECK-NEXT:  } ],
    // CHECK-NEXT:  description: "MLIR Converted.",
    // CHECK-NEXT:  buffers: [ {
    // CHECK-EMPTY:
    // CHECK-NEXT:  }, {
    // CHECK-NEXT:    data: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
    // CHECK-NEXT:  }, {
    // CHECK-NEXT:    data: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export_flags.h

    extern bool lower_tensor_list_ops;
    // The flag to control whether debug info gets stripped on export.
    extern bool strip_debug_info;
    // The flag to control whether to store constant & custom buffers inside
    // flatbuffer
    extern bool use_buffer_offset;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 20 17:49:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/log/slog/internal/buffer/buffer.go

    		b := make([]byte, 0, 1024)
    		return (*Buffer)(&b)
    	},
    }
    
    func New() *Buffer {
    	return bufPool.Get().(*Buffer)
    }
    
    func (b *Buffer) Free() {
    	// To reduce peak allocation, return only smaller buffers to the pool.
    	const maxBufferSize = 16 << 10
    	if cap(*b) <= maxBufferSize {
    		*b = (*b)[:0]
    		bufPool.Put(b)
    	}
    }
    
    func (b *Buffer) Reset() {
    	b.SetLen(0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. docs/es/docs/deployment/index.md

    Esto difiere en las fases de **desarrollo**, donde estás constantemente cambiando el código, rompiéndolo y arreglándolo, deteniendo y reiniciando el servidor de desarrollo, etc.
    
    ## Estrategias de despliegue
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top