Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 424 for distinguish (0.18 sec)

  1. 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)
  2. test/const.go

    func floats() {
    	assert(f0 == c0, "f0")
    	assert(f1 == c1, "f1")
    	// TODO(gri): exp/ssa/interp constant folding is incorrect.
    	if os.Getenv("GOSSAINTERP") == "" {
    		assert(fhuge == fhuge_1, "fhuge") // float64 can't distinguish fhuge, fhuge_1.
    	}
    	assert(fhuge_1+1 == fhuge, "fhuge 1")
    	assert(fhuge+fm1+1 == fhuge, "fm1")
    	assert(f3div2 == 1.5, "3./2.")
    	assert(f1e3 == 1000, "f1e3 int")
    	assert(f1e3 == 1.e3, "f1e3 float")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation.go

    		}
    	}
    
    	return errs
    }
    
    // validateListSet validated uniqueness of unstructured objects (scalar and compound) and
    // returns the first non-unique appearance of items.
    //
    // As a special case to distinguish undefined key and null values, we allow unspecifiedKeyValue and nullObjectValue
    // which are both handled like scalars with correct comparison by Golang.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 02:47:24 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbNamedPipe.java

     * file operations.
     * </ul>
     *
     * <p>
     * The jCIFS API maps all of these operations into the standard Java
     * <code>XxxputStream</code> interface. A special <code>PIPE_TYPE</code>
     * flags is necessary to distinguish which type of Named Pipe behavior
     * is desired.
     *
     * <p>
     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="Usage examples">
     * <tr bgcolor="#ccccff">
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"revisionHistoryLimit": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    }
    
    func (DaemonSetSpec) SwaggerDoc() map[string]string {
    	return map_DaemonSetSpec
    }
    
    var map_DaemonSetStatus = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top