Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,546 for examine (0.44 sec)

  1. tensorflow/c/ops.h

    // TF_ShapeInferenceContext pointer. The function's implementation will use the
    // accessor and mutator functions with names beginning with
    // TF_ShapeInferenceContext to examine the input state and determine the output
    // shape.
    
    // Returns the number of inputs in the given shape inference context.
    TF_CAPI_EXPORT extern int64_t TF_ShapeInferenceContextNumInputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractService.java

       *
       * @throws IllegalStateException if the service is not {@link State#STARTING}.
       */
      protected final void notifyStarted() {
        monitor.enter();
        try {
          // We have to examine the internal state of the snapshot here to properly handle the stop
          // while starting case.
          if (snapshot.state != STARTING) {
            IllegalStateException failure =
                new IllegalStateException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. src/log/slog/value.go

    	}
    }
    
    // isEmptyGroup reports whether v is a group that has no attributes.
    func (v Value) isEmptyGroup() bool {
    	if v.Kind() != KindGroup {
    		return false
    	}
    	// We do not need to recursively examine the group's Attrs for emptiness,
    	// because GroupValue removed them when the group was constructed, and
    	// groups are immutable.
    	return len(v.group()) == 0
    }
    
    // append appends a text representation of v to dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package elfexec provides utility routines to examine ELF binaries.
    package elfexec
    
    import (
    	"bufio"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"io"
    )
    
    const (
    	maxNoteSize        = 1 << 20 // in bytes
    	noteTypeGNUBuildID = 3
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/internal/trace/trace_test.go

    			t.Fatalf("failed to parse CPU profile summary in stderr: %v", err)
    		}
    		if pprofSamples == 0 {
    			t.Skip("CPU profile did not include any samples while tracing was active")
    		}
    
    		// Examine the execution tracer's view of the CPU profile samples. Filter it
    		// to only include samples from the single test goroutine. Use the goroutine
    		// ID that was recorded in the events: that should reflect getg().m.curg,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    // locateBinaries searches for binary files listed in the profile and, if found,
    // updates the profile accordingly.
    func locateBinaries(p *profile.Profile, s *source, obj plugin.ObjTool, ui plugin.UI) {
    	// Construct search path to examine
    	searchPath := os.Getenv("PPROF_BINARY_PATH")
    	if searchPath == "" {
    		// Use $HOME/pprof/binaries as default directory for local symbolization binaries
    		searchPath = filepath.Join(os.Getenv(homeEnv()), "pprof", "binaries")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    	dsc.enqueueDaemonSet(ds)
    }
    
    func (dsc *DaemonSetsController) addNode(logger klog.Logger, obj interface{}) {
    	// TODO: it'd be nice to pass a hint with these enqueues, so that each ds would only examine the added node (unless it has other work to do, too).
    	dsList, err := dsc.dsLister.List(labels.Everything())
    	if err != nil {
    		logger.V(4).Info("Error enqueueing daemon sets", "err", err)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadpe/ldpe.go

    	state.comdats = make(map[uint16]int64)
    	for i, s := range state.f.Sections {
    		if s.Characteristics&uint32(pe.IMAGE_SCN_LNK_COMDAT) != 0 {
    			state.comdats[uint16(i)] = int64(s.Size)
    		}
    	}
    
    	// Examine symbol defs.
    	for i, numaux := 0, 0; i < len(state.f.COFFSymbols); i += numaux + 1 {
    		pesym := &state.f.COFFSymbols[i]
    		numaux = int(pesym.NumberOfAuxSymbols)
    		if pesym.SectionNumber == 0 { // extern
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/generated.proto

      // Refer to the specific FSGroupPolicy values for additional details.
      //
      // This field was immutable in Kubernetes < 1.29 and now is mutable.
      //
      // Defaults to ReadWriteOnceWithFSType, which will examine each volume
      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // permission of the volume before being mounted.
      // Refer to the specific FSGroupPolicy values for additional details.
      //
      // This field is immutable.
      //
      // Defaults to ReadWriteOnceWithFSType, which will examine each volume
      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top