Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 191 for dialing (0.32 sec)

  1. pilot/pkg/autoregistration/controller_test.go

    	return &core.Node{
    		Locality: &core.Locality{
    			Region:  r,
    			Zone:    z,
    			SubZone: sz,
    		},
    	}
    }
    
    // createOrFail wraps config creation with convenience for failing tests
    func createOrFail(t test.Failer, store model.ConfigStoreController, cfg config.Config) {
    	if _, err := store.Create(cfg); err != nil {
    		t.Fatalf("failed creating %s/%s: %v", cfg.Namespace, cfg.Name, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadelf/ldelf.go

    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.
    */
    
    const (
    	SHT_ARM_ATTRIBUTES = 0x70000003
    )
    
    type ElfSect struct {
    	name        string
    	nameoff     uint32
    	type_       elf.SectionType
    	flags       elf.SectionFlag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    			if err != nil {
    				return -1, errObjectTampered
    			}
    			return size, nil
    		}
    		return o.DecryptedSize()
    	}
    
    	return o.Size, nil
    }
    
    // Disabling compression for encrypted enabled requests.
    // Using compression and encryption together enables room for side channel attacks.
    // Eliminate non-compressible objects by extensions/content-types.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    //go:nowritebarrier
    func stackmapdata(stkmap *stackmap, n int32) bitvector {
    	// Check this invariant only when stackDebug is on at all.
    	// The invariant is already checked by many of stackmapdata's callers,
    	// and disabling it by default allows stackmapdata to be inlined.
    	if stackDebug > 0 && (n < 0 || n >= stkmap.n) {
    		throw("stackmapdata: index out of range")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    There are two main use cases:
    
    - Using the status of build features in reports or statistics.
    - Incrementally adopting experimental Gradle features by disabling incompatible plugin functionality.
    
    Below is an example of a plugin that utilizes both of the cases.
    
    .Reacting to build features
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.
      optional string name = 1;
    
      // served is a flag enabling/disabling this version from being served via REST APIs
      optional bool served = 2;
    
      // storage indicates this version should be used when persisting custom resources to storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.
      optional string name = 1;
    
      // served is a flag enabling/disabling this version from being served via REST APIs
      optional bool served = 2;
    
      // storage indicates this version should be used when persisting custom resources to storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    For example, the Maven Enforcer plugin allows you to control dependency versions and environmental factors, but these things can easily be configured in a normal Gradle build script.
    
    
    [[migmvn:custom_plugins]]
    == Dealing with uncommon and custom plugins
    
    You may come across Maven plugins that have no counterpart in Gradle, particularly if you or someone in your organisation has written a custom plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. src/internal/fuzz/fuzz.go

    					// Send it back to a worker for minimization. Disable inputC so
    					// other workers don't continue fuzzing.
    					c.crashMinimizing = &result
    					fmt.Fprintf(c.opts.Log, "fuzz: minimizing %d-byte failing input file\n", len(result.entry.Data))
    					c.queueForMinimization(result, nil)
    				} else if !crashWritten {
    					// Found a crasher that's either minimized or not minimizable.
    					// Write to corpus and stop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ===== Conditionally enable reports
    
    You might want to conditionally enable reports so you don't have to edit the build file to see them.
    To enable the reports based on a project property, check for the presence of a property before disabling reports:
    
    ====
    .build.gradle.kts
    [source.multi-language-sample,kotlin]
    ----
    tasks.withType<Test>().configureEach {
        if (!project.hasProperty("createReports")) {
            reports.html.required = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top