Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 931 for Everything (0.12 sec)

  1. hack/jenkins/update-dockerized.sh

    kube::etcd::install
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    make update
    
    if [[ -d "${ARTIFACTS:-}" ]]; then
      # ignore the .git, _output directories and zip up everything else
      zip -y -r "${ARTIFACTS}/updated-files.zip" . -x '*.git*' -x '*_output*'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 00:02:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor_trimpath.txt

    ! stdout .
    
    # The program prints a file name from a vendored package.
    # Without -trimpath, the name should include the vendor directory.
    go run main.go
    stdout vendor
    
    # With -trimpath, everything before the package path should be trimmed.
    # As with -mod=mod, the version should appear as part of the module path.
    go run -mod=vendor -trimpath main.go
    stdout '^example.com/stack@v1.0.0/stack.go$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 13 00:19:50 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. istioctl/pkg/root/root.go

    	Scope = log.RegisterScope("cli", "istioctl")
    )
    
    func defaultLogOptions() *log.Options {
    	o := log.DefaultOptions()
    	// Default to warning for everything; we usually don't want logs in istioctl
    	o.SetDefaultOutputLevel("all", log.WarnLevel)
    	// These scopes are too noisy even at warning level
    	o.SetDefaultOutputLevel("validation", log.ErrorLevel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. cmd/genkubedocs/postprocessing_test.go

    			//     more flexibility for include, e.g. include in tabs
    			markdown: "line 1\n" +
    				"line 2\n" +
    				"line 3",
    			expectedMarkdown: "line 2\n" +
    				"line 3",
    		},
    		{ // everything after ###SEE ALSO is removed
    			// Nb.  see also, that assumes file will be used as a main page (does not apply to includes)
    			markdown: "line 1\n" +
    				"line 2\n" +
    				"### SEE ALSO\n" +
    				"line 3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 30 13:22:22 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/UnmanagedImplStructStrategy.java

        public UnmanagedImplStructStrategy(ModelSchemaAspectExtractor aspectExtractor) {
            super(aspectExtractor);
        }
    
        @Override
        protected boolean isTarget(ModelType<?> type) {
            // Everything is an unmanaged struct that hasn't been handled before
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            def numberOfChangesBetweenBuilds = maxFileChangesWithoutOverflow
            int numberOfRuns = 50
    
            int numberOfOverflows = 0
    
            when:
            succeeds("assemble")
            // Assemble twice, so everything is up-to-date and nothing is invalidated
            succeeds("assemble")
            def daemon = daemons.daemon
            def retainedFilesInLastBuild = vfsLogs.retainedFilesInCurrentBuild
            then:
            daemon.assertIdle()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/LongAddables.java

                @Override
                public LongAddable get() {
                  return new LongAdder();
                }
              };
        } catch (Throwable t) { // we really want to catch *everything*
          supplier =
              new Supplier<LongAddable>() {
                @Override
                public LongAddable get() {
                  return new PureJavaLongAddable();
                }
              };
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 04 17:27:14 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LongAddables.java

                @Override
                public LongAddable get() {
                  return new LongAdder();
                }
              };
        } catch (Throwable t) { // we really want to catch *everything*
          supplier =
              new Supplier<LongAddable>() {
                @Override
                public LongAddable get() {
                  return new PureJavaLongAddable();
                }
              };
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 04 17:27:14 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    // IndexerFuncs is a mapping from `<index name>` to function that
    // for a given object computes `<value for that index>`.
    type IndexerFuncs map[string]IndexerFunc
    
    // Everything accepts all objects.
    var Everything = SelectionPredicate{
    	Label: labels.Everything(),
    	Field: fields.Everything(),
    }
    
    // MatchValue defines a pair (`<index name>`, `<value for that index>`).
    type MatchValue struct {
    	IndexName string
    	Value     string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client.go

    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    						for _, c := range ic.registeredHandlers {
    							c.handler.OnAdd(item, false)
    						}
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top