Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,637 for camping (0.13 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"calling":                              "\U0001f4f2",
    	"cambodia":                             "\U0001f1f0\U0001f1ed",
    	"camel":                                "\U0001f42b",
    	"camera":                               "\U0001f4f7",
    	"camera_flash":                         "\U0001f4f8",
    	"cameroon":                             "\U0001f1e8\U0001f1f2",
    	"camping":                              "\U0001f3d5\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. docs/features/caching.md

    Caching
    =======
    
    OkHttp implements an optional, off by default, Cache. OkHttp aims for RFC correct and
    pragmatic caching behaviour, following common real-world browser like Firefox/Chrome and 
    server behaviour when ambiguous.
    
    # Basic Usage
    
    ```kotlin
      private val client: OkHttpClient = OkHttpClient.Builder()
          .cache(Cache(
              directory = File(application.cacheDir, "http_cache"),
              // $0.05 worth of phone storage in 2020
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/mapping.txt

    Shinsuke Sugaya <******@****.***> 1690423667 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromRepo/tests/project-caching/1/project-caching-1.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>tests</groupId>
      <artifactId>project-caching</artifactId>
      <version>1</version>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 152 bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/ja/mapping.txt

    Shinsuke Sugaya <******@****.***> 1690423667 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/fa/mapping.txt

    Shinsuke Sugaya <******@****.***> 1653046245 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 11:30:45 UTC 2022
    - 771 bytes
    - Viewed (0)
  7. src/net/http/mapping.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package http
    
    // A mapping is a collection of key-value pairs where the keys are unique.
    // A zero mapping is empty and ready to use.
    // A mapping tries to pick a representation that makes [mapping.find] most efficient.
    type mapping[K comparable, V any] struct {
    	s []entry[K, V] // for few pairs
    	m map[K]V       // for many pairs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/apitesting/naming/naming.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 naming
    
    import (
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  9. schema/naming.go

    }
    
    // Replacer replacer interface like strings.Replacer
    type Replacer interface {
    	Replace(name string) string
    }
    
    var _ Namer = (*NamingStrategy)(nil)
    
    // NamingStrategy tables, columns naming strategy
    type NamingStrategy struct {
    	TablePrefix         string
    	SingularTable       bool
    	NameReplacer        Replacer
    	NoLowerCase         bool
    	IdentifierMaxLength int
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/main/resources/suggest_indices/analyzer/mapping-default.json

    {
      "dynamic_templates": [
        {
          "strings": {
            "mapping": {
              "type": "keyword"
            },
            "match": "*",
            "match_mapping_type": "string"
          }
        }
      ],
      "properties": {
        "settingsType": {
          "type": "keyword"
        },
        "fieldName": {
          "type": "keyword"
        },
        "readingAnalyzer": {
          "type": "keyword"
        },
        "readingTermAnalyzer": {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Aug 03 15:54:27 UTC 2018
    - 613 bytes
    - Viewed (0)
Back to top