Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 424 for distinguish (0.29 sec)

  1. src/cmd/vendor/golang.org/x/text/language/doc.go

    //
    // By default, only legacy and deprecated tags are converted into their
    // canonical equivalent. All other information is preserved. This approach makes
    // the confidence scores more accurate and allows matchers to distinguish
    // between variants that are otherwise lost.
    //
    // As a consequence, two tags that should be treated as identical according to
    // BCP 47 or CLDR, like "en-Latn" and "en", will be represented differently. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/debug/dwarf/open.go

    // AddTypes will add one .debug_types section to the DWARF data. A
    // typical object with DWARF version 4 debug info will have multiple
    // .debug_types sections. The name is used for error reporting only,
    // and serves to distinguish one .debug_types section from another.
    func (d *Data) AddTypes(name string, types []byte) error {
    	return d.parseTypes(name, types)
    }
    
    // AddSection adds another DWARF section by name. The name should be a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/runtime/signal_darwin_amd64.go

    //go:nosplit
    func (c *sigctxt) fixsigcode(sig uint32) {
    	switch sig {
    	case _SIGTRAP:
    		// OS X sets c.sigcode() == TRAP_BRKPT unconditionally for all SIGTRAPs,
    		// leaving no way to distinguish a breakpoint-induced SIGTRAP
    		// from an asynchronous signal SIGTRAP.
    		// They all look breakpoint-induced by default.
    		// Try looking at the code to see if it's a breakpoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type L.
    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    	// We record the difference by negating j-1 if it is preceded by type S.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager.go

    			continue
    		}
    
    		// webhook names are not validated for uniqueness, so we check for duplicates and
    		// add a int suffix to distinguish between them
    		names := map[string]int{}
    		configurationAccessors := make([]webhook.WebhookAccessor, 0, len(c.Webhooks))
    		for i := range c.Webhooks {
    			n := c.Webhooks[i].Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. cmd/bucket-replication-handlers.go

    				SourceVersionID:          mustGetUUID(),
    				ReplicationStatus:        minio.ReplicationStatusReplica,
    				SourceMTime:              time.Now(),
    				ReplicationRequest:       true, // always set this to distinguish between `mc mirror` replication and serverside
    				ReplicationValidityCheck: true, // set this to validate the replication config
    			},
    		}
    		obj := path.Join(minioReservedBucket, globalLocalNodeNameHex, "deleteme")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    			continue
    		}
    
    		// webhook names are not validated for uniqueness, so we check for duplicates and
    		// add a int suffix to distinguish between them
    		names := map[string]int{}
    		configurationAccessors := make([]webhook.WebhookAccessor, 0, len(c.Webhooks))
    		for i := range c.Webhooks {
    			n := c.Webhooks[i].Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/dumper.go

    					return
    				}
    			}
    		}
    		p.last = b
    	}
    	if len(data) > n {
    		m, err = p.output.Write(data[n:])
    		n += m
    	}
    	return
    }
    
    // writeError wraps locally caught write errors so we can distinguish
    // them from genuine panics which we don't want to return as errors.
    type writeError struct {
    	err error
    }
    
    // printf is a convenience wrapper that takes care of print errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    }
    
    // defaultOnRead sets interlinked fields that were not previously set on read.
    // We can't do this in the normal defaulting path because that same logic
    // applies on Get, Create, and Update, but we need to distinguish between them.
    //
    // This will be called on both PersistentVolumeClaim and PersistentVolumeClaimList types.
    func (r *REST) defaultOnRead(obj runtime.Object) {
    	switch s := obj.(type) {
    	case *api.PersistentVolumeClaim:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. pkg/registry/flowcontrol/flowschema/strategy.go

    	newFlowSchema := obj.(*flowcontrol.FlowSchema)
    	oldFlowSchema := old.(*flowcontrol.FlowSchema)
    
    	// Spec updates bump the generation so that we can distinguish between status updates.
    	if !apiequality.Semantic.DeepEqual(newFlowSchema.Spec, oldFlowSchema.Spec) {
    		newFlowSchema.Generation = oldFlowSchema.Generation + 1
    	}
    	newFlowSchema.Status = oldFlowSchema.Status
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top