Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 361 for withZip (0.19 sec)

  1. pkg/apis/core/types.go

    	// VolumeName is the human-readable name of the StorageOS volume.  Volume
    	// names are only unique within a namespace.
    	VolumeName string
    	// VolumeNamespace specifies the scope of the volume within StorageOS.  If no
    	// namespace is specified then the Pod's namespace will be used.  This allows the
    	// Kubernetes name scoping to be mirrored within StorageOS for tighter integration.
    	// Set VolumeName to any name to override the default behaviour.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // names are only unique within a namespace.
      optional string volumeName = 1;
    
      // volumeNamespace specifies the scope of the volume within StorageOS.  If no
      // namespace is specified then the Pod's namespace will be used.  This allows the
      // Kubernetes name scoping to be mirrored within StorageOS for tighter integration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    	URL:      "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/stringintconv",
    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    // describe returns a string describing the type typ contained within the type
    // set of inType. If non-empty, inName is used as the name of inType (this is
    // necessary so that we can use alias type names that may not be reachable from
    // inType itself).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

            succeeds()
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/962")
        @UnsupportedWithConfigurationCache
        def "init script can register all projects hook from within the projects loaded callback of build listener"() {
            given:
            executer.requireOwnGradleUserHomeDir()
    
            and:
            file("buildSrc/settings.gradle").createFile()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

        // interface the `CallOpInterface` so it should be handled separately.
        if (auto batch_function = dyn_cast<TF::BatchFunctionOp>(op)) {
          // Propagate the analysis results from within the callee's body.
          PropagatePotentiallyWrittenUpFromCallee(batch_function.func().getRegion(),
                                                  batch_function.getOperands());
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

      }
      enum Mode {
        UNSPECIFIED_MODE = 0;
    
        // In STRICT mode, only endpoints that meets all of the routing preferences will be considered.
        // This can be used, for instance, to keep traffic ONLY within the same cluster/node/region.
        // This should be used with caution, as it can result in all traffic being dropped if there is no matching endpoints,
        // even if there are endpoints outside of the preferences.
        STRICT = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/nowb.go

    	// it's a lot harder to work out the argument after.
    	for _, n := range typecheck.Target.Funcs {
    		c.curfn = n
    		if c.curfn.ABIWrapper() {
    			// We only want "real" calls to these
    			// functions, not the generated ones within
    			// their own ABI wrappers.
    			continue
    		}
    		ir.Visit(n, c.findExtraCalls)
    	}
    	c.curfn = nil
    	return c
    }
    
    func (c *nowritebarrierrecChecker) findExtraCalls(nn ir.Node) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	// Determine the upload logger.
    	//
    	// This depends on the provided rcfg.LogWriter and the presence of
    	// dir.DebugDir, as follows:
    	//  1. If LogWriter is present, log to it.
    	//  2. If DebugDir is present, log to a file within it.
    	//  3. If both LogWriter and DebugDir are present, log to a multi writer.
    	//  4. If neither LogWriter nor DebugDir are present, log to a noop logger.
    	var logWriters []io.Writer
    	logFile, err := debugLogFile(dir.DebugDir())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/go/types/typeparam.go

    		typ.iface()
    	}
    	return typ
    }
    
    // Obj returns the type name for the type parameter t.
    func (t *TypeParam) Obj() *TypeName { return t.obj }
    
    // Index returns the index of the type param within its param list, or -1 if
    // the type parameter has not yet been bound to a type.
    func (t *TypeParam) Index() int {
    	return t.index
    }
    
    // Constraint returns the type constraint specified for t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. README.md

    types (such as multimap and multiset), immutable collections, a graph library,
    and utilities for concurrency, I/O, hashing, primitives, strings, and more! It
    is widely used on most Java projects within Google, and widely used by many
    other companies as well.
    
    
    
    Guava comes in two flavors:
    
    *   The JRE flavor requires JDK 1.8 or higher.
    *   If you need support for Android, use
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top