Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for fileFor (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

          // For a Location to be surfaced in the stack, it must evaluate to true.
          // For any Location that is a FileLineColLoc:
          if (FileLineColLoc fileLoc = mlir::dyn_cast<FileLineColLoc>(loc)) {
            return !tensorflow::IsInternalFrameForFilename(
                fileLoc.getFilename().str());
          } else {
            // If this is a non-FileLineColLoc, go ahead and include it.
            return true;
          }
        };
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IncrementalProcessingEnvironment.java

        private final ProcessingEnvironment delegate;
        private final IncrementalFiler filer;
    
        IncrementalProcessingEnvironment(ProcessingEnvironment delegate, IncrementalFiler filer) {
            this.delegate = delegate;
            this.filer = filer;
        }
    
        @Override
        public Map<String, String> getOptions() {
            return delegate.getOptions();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/os/dirent_freebsd.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Fileno), unsafe.Sizeof(syscall.Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. src/internal/coverage/decodemeta/decodefile.go

    	if err := r.readFileHeader(); err != nil {
    		return nil, err
    	}
    	return r, nil
    }
    
    func (r *CoverageMetaFileReader) readFileHeader() error {
    	var err error
    
    	r.fileRdr = bufio.NewReader(r.f)
    
    	// Read file header.
    	if err := binary.Read(r.fileRdr, binary.LittleEndian, &r.hdr); err != nil {
    		return err
    	}
    
    	// Verify magic string
    	m := r.hdr.Magic
    	g := coverage.CovMetaMagic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IncrementalFiler.java

    public class IncrementalFiler implements Filer {
        private final Filer delegate;
        private final IncrementalProcessingStrategy strategy;
    
        IncrementalFiler(Filer delegate, IncrementalProcessingStrategy strategy) {
            this.delegate = delegate;
            if (strategy == null) {
                throw new NullPointerException("strategy");
            }
            this.strategy = strategy;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/SourceFileHeader.kt

        "useless_cast",
        "unchecked_cast",
        "extension_shadowed_by_member",
        "redundant_projection",
        "RemoveRedundantBackticks",
        "ObjectPropertyName",
        "deprecation"
    )
    @file:org.gradle.api.Generated${if (isIncubating) "\n@file:org.gradle.api.Incubating" else ""}
    
    /* ktlint-disable */
    
    package $packageName
    """
    
    
    const val kotlinDslPackageName = "org.gradle.kotlin.dsl"
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IncrementalFilerTest.groovy

    import javax.annotation.processing.Filer
    import javax.lang.model.element.ExecutableElement
    import javax.lang.model.element.Name
    import javax.lang.model.element.PackageElement
    import javax.lang.model.element.TypeElement
    
    abstract class IncrementalFilerTest extends Specification {
        Filer delegate = Stub(Filer)
        AnnotationProcessingResult result = new AnnotationProcessingResult()
        Filer filer
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/os/dirent_openbsd.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Fileno), unsafe.Sizeof(syscall.Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. src/os/dirent_netbsd.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Fileno), unsafe.Sizeof(syscall.Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. src/os/dirent_dragonfly.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Fileno), unsafe.Sizeof(syscall.Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	namlen, ok := direntNamlen(buf)
    	if !ok {
    		return 0, false
    	}
    	return (16 + namlen + 1 + 7) &^ 7, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top