Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 343 for distinguish (0.21 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	newPriorityLevelConfiguration := obj.(*flowcontrol.PriorityLevelConfiguration)
    	oldPriorityLevelConfiguration := old.(*flowcontrol.PriorityLevelConfiguration)
    
    	// Spec updates bump the generation so that we can distinguish between status updates.
    	if !apiequality.Semantic.DeepEqual(newPriorityLevelConfiguration.Spec, oldPriorityLevelConfiguration.Spec) {
    		newPriorityLevelConfiguration.Generation = oldPriorityLevelConfiguration.Generation + 1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		//     has removed the type from the cache.
    		//  c. the type is an aggregated resource that is served by a
    		//     different apiserver (thus its object count is not updated)
    		// we don't have a way to distinguish between those situations.
    		// However, in case c, the request is delegated to a different apiserver,
    		// and thus its cost for our server is minimal. To avoid the situation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top