Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for reserved1 (0.14 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_internal.h

    /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 13 22:20:40 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

      computeInputsOutputs(ops, &inputs, &outputs);
    
      std::vector<Type> input_types;
      std::vector<Type> output_types;
    
      input_types.reserve(inputs.size());
      for (Value v : inputs) {
        input_types.push_back(v.getType());
      }
      output_types.reserve(outputs.size());
      for (Value v : outputs) {
        output_types.push_back(v.getType());
      }
    
      // Create the function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/svn.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codehost
    
    import (
    	"archive/zip"
    	"context"
    	"encoding/xml"
    	"fmt"
    	"io"
    	"os"
    	"path"
    	"path/filepath"
    	"strconv"
    	"time"
    
    	"cmd/go/internal/base"
    )
    
    func svnParseStat(rev, out string) (*RevInfo, error) {
    	var log struct {
    		Logentry struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/doc.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package language implements BCP 47 language tags and related functionality.
    //
    // The most important function of package language is to match a list of
    // user-preferred languages to a list of supported languages.
    // It alleviates the developer of dealing with the complexity of this process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device.cc

        return result;
      }
      std::vector<ParallelTensor*> parallel_inputs;
      std::vector<std::unique_ptr<ParallelTensor>> implicitly_broadcast_tensors;
      parallel_inputs.reserve(inputs.size());
      implicitly_broadcast_tensors.reserve(inputs.size());  // not tight
      for (const auto& input : inputs) {
        if (absl::holds_alternative<TFE_TensorHandle*>(input)) {
          if (operation_name == std::string("_EagerConst")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/util/ports/ReservedPortRangeTest.groovy

        }
    
        def "detects when ports are unavailable" () {
            def reserved = []
    
            when:
            8.times {
                reserved.add(range.allocate())
            }
    
            then:
            _ * portDetector.isAvailable(_) >> { int port -> return ! (port in [103,107]) }
    
            and:
            ! reserved.contains(103)
            ! reserved.contains(107)
    
            and:
            range.allocate() == -1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 06 13:37:30 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    				},
    			},
    			"",
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			reserved, _ := convertReserved(&machineInfo, tc.systemReserved)
    			if !reflect.DeepEqual(reserved, tc.systemReservedExpected) {
    				t.Errorf("got %v, expected %v", reserved, tc.systemReservedExpected)
    			}
    		})
    	}
    }
    
    func TestGetSystemReservedMemory(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  9. src/runtime/tracebuf.go

    		if v < 0x80 {
    			pos += i + 1
    			arr[i] = byte(v)
    			break
    		}
    		arr[i] = 0x80 | byte(v)
    		v >>= 7
    	}
    	buf.pos = pos
    }
    
    // varintReserve reserves enough space in buf to hold any varint.
    //
    // Space reserved this way can be filled in with the varintAt method.
    func (buf *traceBuf) varintReserve() int {
    	p := buf.pos
    	buf.pos += traceBytesPerNumber
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/registry/core/service/allocator/bitmap_test.go

    		allocator func(max int, rangeSpec string, reserved int) *AllocationBitmap
    		max       int
    		reserved  int
    	}{
    		{
    			name:      "NewAllocationMap",
    			allocator: NewAllocationMapWithOffset,
    			max:       32,
    			reserved:  0,
    		},
    		{
    			name:      "NewAllocationMapWithOffset max < 16",
    			allocator: NewAllocationMapWithOffset,
    			max:       8,
    			reserved:  0,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 10 08:56:31 UTC 2022
    - 13.3K bytes
    - Viewed (0)
Back to top