Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for frequently (0.3 sec)

  1. pkg/generated/openapi/OWNERS

    approvers:
      - sttts
      - roycaihw
      - liggitt
      # APIs frequently hit this directory for zz_generate.openapi.go
      - api-approvers
    reviewers:
      - sttts
      - roycaihw
      - liggitt
    labels:
      - sig/api-machinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 19:27:53 UTC 2023
    - 231 bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * command. Even though search engine crawlers may consider this information
         * when making decisions, they may crawl pages marked "hourly" less
         * frequently than that, and they may crawl pages marked "yearly" more
         * frequently than that. Crawlers may periodically crawl pages marked
         * "never" so that they can handle unexpected changes to those pages.
         */
        private String changefreq;
    
        /**
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_retract_rename_v1.0.0-bad.txt

    Module example.com/retract/rename is renamed in a later version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.0.0-bad"}
    -- .mod --
    module example.com/retract/rename
    
    go 1.16
    -- go.mod --
    module example.com/retract/rename
    
    go 1.16
    -- rename.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 374 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_retract_rename_v1.9.0-new.txt

    Module example.com/retract/rename is renamed in this version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.9.0-new"}
    -- .mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- go.mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- newname.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 429 bytes
    - Viewed (0)
  5. src/cmd/internal/goobj/builtin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goobj
    
    import "internal/buildcfg"
    
    // Builtin (compiler-generated) function references appear
    // frequently. We assign special indices for them, so they
    // don't need to be referenced by name.
    
    // NBuiltin returns the number of listed builtin
    // symbols.
    func NBuiltin() int {
    	return len(builtins)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue27695.go

    // calling methods (+functions, TODO) with reflect.
    
    package main
    
    import (
    	"reflect"
    	"runtime/debug"
    	"sync"
    )
    
    func main() {
    	debug.SetGCPercent(1) // run GC frequently
    	var wg sync.WaitGroup
    	for i := 0; i < 20; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			for i := 0; i < 2000; i++ {
    				_test()
    			}
    		}()
    	}
    	wg.Wait()
    }
    
    type Stt struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 29 20:25:24 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * The rate by which this clock slows, and therefore the time it takes to resync,
     * is determined by how frequently the clock is read.
     * If timestamps are only requested at a rate greater than the sync interval,
     * all timestamps will have the same value until the clocks synchronize (i.e. this clock will pause).
     * If timestamps are requested more frequently than the sync interval,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * Retrieving services via [Project.getService][com.intellij.openapi.project.Project.getService] and
     * [Application.getService][com.intellij.openapi.application.Application.getService] can have an impact on performance when called
     * frequently. While caching a service is generally not recommended, it can be beneficial for performance in hot spots, if done right.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/sync/atomic/example_test.go

    			for r := range requests() {
    				c := config.Load()
    				// Handle request r using config c.
    				_, _ = r, c
    			}
    		}()
    	}
    }
    
    // The following example shows how to maintain a scalable frequently read,
    // but infrequently updated data structure using copy-on-write idiom.
    func ExampleValue_readMostly() {
    	type Map map[string]string
    	var m atomic.Value
    	m.Store(make(Map))
    	var mu sync.Mutex // used only by writers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 18 23:58:54 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitComments.java

         * helpful links and disclaimers about files being generated by an 'init' task.
         */
        ON,
    
        /**
         * Comments are not included for the source files and build files.
         * <p>
         * Comments in less frequently accessed files are preserved,
         * e.g. in the {@code .gitignore} and {@code .gitattributes}.
         */
        OFF,
    
        /**
         * Special mode, currently required by our `SamplesGenerator`,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 12:41:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top