Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 94 for fileFor (0.57 sec)

  1. 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)
  2. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

                public class ${annotationName}Processor extends AbstractProcessor {
                    private Map<String, String> options;
                    private Elements elementUtils;
                    private Filer filer;
                    private Messager messager;
    
                    ${membersBlock}
    
                    @Override
                    public Set<String> getSupportedAnnotationTypes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/options.go

    // be monitored for CRD yaml files and will update the controller as those files change (This is used for testing
    // purposes). Otherwise, a CRD client is created based on the configuration.
    type RegistryOptions struct {
    	// If FileDir is set, the below kubernetes options are ignored
    	FileDir string
    
    	Registries []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/metrics/types_util.cc

    namespace mlir {
    namespace TFL {
    namespace {
    
    // Extracts information from mlir::FileLineColLoc to the proto message
    // tflite::metrics::ConverterErrorData::FileLoc.
    void ExtractFileLine(const FileLineColLoc& loc,
                         tflite::metrics::ConverterErrorData::FileLoc* fileline) {
      fileline->set_filename(loc.getFilename().str());
      fileline->set_line(loc.getLine());
      fileline->set_column(loc.getColumn());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. api/except.txt

    pkg syscall (freebsd-386), const O_CLOEXEC = 0
    pkg syscall (freebsd-386), func Fchflags(string, int) error
    pkg syscall (freebsd-386), func Mknod(string, uint32, int) error
    pkg syscall (freebsd-386), type Dirent struct, Fileno uint32
    pkg syscall (freebsd-386), type Dirent struct, Namlen uint8
    pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32
    pkg syscall (freebsd-386), type Stat_t struct, Dev uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

         */
        private static OutputStream wrapOutputStream(final OutputStream stream, int fileno) {
    
            // If the jansi.passthrough property is set, then don't interpret
            // any of the ansi sequences.
            if (Boolean.getBoolean("jansi.passthrough")) {
                return stream;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotatedGeneratedClassProcessorFixture.groovy

                mv.visitInsn(org.objectweb.asm.Opcodes.RETURN);
                mv.visitEnd();
                classWriter.visitEnd();
                try {
                    JavaFileObject classFile = filer.createClassFile(className, element);
                    OutputStream out = classFile.openOutputStream();
                    try {
                        out.write(classWriter.toByteArray());
                    } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/web/http.go

    			StatusCode: http.StatusNotFound,
    			Body:       http.NoBody,
    			fileErr:    err,
    		}, nil
    	}
    
    	if os.IsPermission(err) {
    		return &Response{
    			URL:        u.Redacted(),
    			Status:     http.StatusText(http.StatusForbidden),
    			StatusCode: http.StatusForbidden,
    			Body:       http.NoBody,
    			fileErr:    err,
    		}, nil
    	}
    
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/ResourceGeneratingProcessorFixture.groovy

            outputLocations = locations
            this
        }
    
        String getGeneratorCode() {
            def outputs = outputLocations.collect { """
            resourceFile = filer.createResource($it, \"\", resourceName${providesNoOriginatingElements ? '' : ', element'});
            writer = resourceFile.openWriter();
            try {
                writer.write("We did it.");
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/web/api.go

    }
    
    type Response struct {
    	URL        string // redacted
    	Status     string
    	StatusCode int
    	Header     map[string][]string
    	Body       io.ReadCloser // Either the original body or &errorDetail.
    
    	fileErr     error
    	errorDetail errorDetailBuffer
    }
    
    // Err returns an *HTTPError corresponding to the response r.
    // If the response r has StatusCode 200 or 0 (unset), Err returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top