Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for distinguish (0.39 sec)

  1. maven-di/src/main/java/org/apache/maven/di/Key.java

    import org.apache.maven.di.impl.Types;
    import org.apache.maven.di.impl.Utils;
    
    /**
     * The key defines an identity of a binding. In any DI, a key is usually a type of the object along
     * with some optional tag to distinguish between bindings which make objects of the same type.
     * <p>
     * In ActiveJ Inject, a key is also a type token - special abstract class that can store type information
     * with the shortest syntax possible in Java.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/mem_linux.go

    	//
    	// It can also sometimes return EINVAL if the corresponding
    	// region hasn't been backed by physical memory. This is
    	// difficult to guarantee in general, and it also means
    	// there's no way to distinguish whether this syscall is
    	// actually available. Oops.
    	//
    	// Anyway, that's why this call just doesn't bother checking
    	// any errors.
    	madvise(v, n, _MADV_COLLAPSE)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

            // Build scan plugin filters artifact transform logging by the name of the progress display name
            // since that is the only way it currently can distinguish transforms.
            // When it has a better way, then this test can be removed.
            consoleType = ConsoleOutput.Rich
            BlockingHttpServer server = new BlockingHttpServer()
            server.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body-updates.md

        So, if you want to receive partial updates that can omit all the attributes, you need to have a model with all the attributes marked as optional (with default values or `None`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/deltatest.go

    		} else {
    			// No diff. Ideally delta doesn't send any update here
    			wantUnchanged.Insert(c.Name)
    		}
    	}
    	for _, v := range sotwRes {
    		if _, f := curByName[v.Name]; !f {
    			// Resource is added. Delta doesn't distinguish add vs update, so just put it with changed
    			wantChanged.Insert(v.Name)
    		}
    	}
    
    	gotDeleted := sets.New[string]()
    	if usedDelta {
    		gotDeleted.InsertAll(deleted...)
    	}
    	gotChanged := sets.New[string]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

         * The feature is built upon the EclipseProject TAPI model which is based on the result of the Eclipse plugin.
         *
         * To distinguish between different task dependencies the closed project substitution feature had to change
         * the equals/hashCode implementation of ProjectDependency which lead to duplicate project dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/go/ast/print.go

    					return
    				}
    			}
    		}
    		p.last = b
    	}
    	if len(data) > n {
    		m, err = p.output.Write(data[n:])
    		n += m
    	}
    	return
    }
    
    // localError wraps locally caught errors so we can distinguish
    // them from genuine panics which we don't want to return as errors.
    type localError 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: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top