Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,004 for forPath (0.15 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

                    .withEnv("MINIO_SECRET_KEY", SECRET_KEY)//
                    .withExposedPorts(port)//
                    .withCommand("server /data")//
                    .waitingFor(new HttpWaitStrategy()//
                            .forPath("/minio/health/ready")//
                            .forPort(port)//
                            .withStartupTimeout(Duration.ofSeconds(30)));
            logger.info("Starting {}", IMAGE_NAME);
            minioServer.start();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/image/format.go

    }
    
    // sniff determines the format of r's data.
    func sniff(r reader) format {
    	formats, _ := atomicFormats.Load().([]format)
    	for _, f := range formats {
    		b, err := r.Peek(len(f.magic))
    		if err == nil && match(f.magic, b) {
    			return f
    		}
    	}
    	return format{}
    }
    
    // Decode decodes an image that has been encoded in a registered format.
    // The string returned is the format name used during format registration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/go/format/format.go

    	//
    	// This value is defined in go/printer specifically for go/format and cmd/gofmt.
    	printerNormalizeNumbers = 1 << 30
    )
    
    var config = printer.Config{Mode: printerMode, Tabwidth: tabWidth}
    
    const parserMode = parser.ParseComments | parser.SkipObjectResolution
    
    // Node formats node in canonical gofmt style and writes the result to dst.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/archive/tar/format.go

    	FormatGNU
    
    	// Schily's tar format, which is incompatible with USTAR.
    	// This does not cover STAR extensions to the PAX format; these fall under
    	// the PAX format.
    	formatSTAR
    
    	formatMax
    )
    
    func (f Format) has(f2 Format) bool   { return f&f2 != 0 }
    func (f *Format) mayBe(f2 Format)     { *f |= f2 }
    func (f *Format) mayOnlyBe(f2 Format) { *f &= f2 }
    func (f *Format) mustNotBe(f2 Format) { *f &^= f2 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/formats.go

    	"datetime",     // a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339
    )
    
    // StripUnsupportedFormatsPostProcess sets unsupported formats to empty string.
    func StripUnsupportedFormatsPostProcess(s *spec.Schema) error {
    	if len(s.Format) == 0 {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 09:26:38 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  6. src/fmt/format.go

    	}
    }
    
    // fmtFloat formats a float64. It assumes that verb is a valid format specifier
    // for strconv.AppendFloat and therefore fits into a byte.
    func (f *fmt) fmtFloat(v float64, size int, verb rune, prec int) {
    	// Explicit precision in format specifier overrules default precision.
    	if f.precPresent {
    		prec = f.prec
    	}
    	// Format number, reserving space for leading + sign if needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. cmd/format-erasure_test.go

    			t.Fatal(err)
    		}
    	}
    
    	format := newFormatErasureV3(1, 8)
    	format.Erasure.DistributionAlgo = formatErasureVersionV2DistributionAlgoV1
    	formats := make([]*formatErasureV3, 8)
    
    	for j := 0; j < 8; j++ {
    		newFormat := format.Clone()
    		newFormat.Erasure.This = format.Erasure.Sets[0][j]
    		formats[j] = newFormat
    	}
    
    	formats[1] = nil
    	expThis := formats[2].Erasure.This
    	formats[2].Erasure.This = ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 08:25:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    //
    //  Examples:
    //      format.dns1123Label().validate("my-label-name")
    //      format.dns1123Subdomain().validate("apiextensions.k8s.io")
    //      format.dns1035Label().validate("my-label-name")
    //      format.qualifiedName().validate("apiextensions.k8s.io/v1beta1")
    //      format.dns1123LabelPrefix().validate("my-label-prefix-")
    //      format.dns1123SubdomainPrefix().validate("mysubdomain.prefix.-")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. cmd/format-erasure.go

    	format := &formatErasureV3{}
    	format.Version = formatMetaVersionV1
    	format.Format = formatBackendErasure
    	if setLen == 1 {
    		format.Format = formatBackendErasureSingle
    	}
    	format.ID = mustGetUUID()
    	format.Erasure.Version = formatErasureVersionV3
    	format.Erasure.DistributionAlgo = formatErasureVersionV3DistributionAlgoV3
    	format.Erasure.Sets = make([][]string, numSets)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/time/format.go

    // when used with time.Parse they do not accept all the time formats
    // permitted by the RFCs and they do accept time formats not formally defined.
    // The [RFC3339Nano] format removes trailing zeros from the seconds field
    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top