Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for pubnames (0.26 sec)

  1. callbacks/update.go

    				set = append(set, clause.Assignment{Column: clause.Column{Name: k}, Value: kv})
    			}
    		}
    
    		if !stmt.SkipHooks && stmt.Schema != nil {
    			for _, dbName := range stmt.Schema.DBNames {
    				field := stmt.Schema.LookUpField(dbName)
    				if field.AutoUpdateTime > 0 && value[field.Name] == nil && value[field.DBName] == nil {
    					if v, ok := selectColumns[field.DBName]; (ok && v) || !ok {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:44:55 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/net/net_windows_test.go

    		// for the same MAC address. If that is the case here,
    		// and we can match at least one of those names,
    		// let's ignore the other names.
    		if dupNames, ok := dups[wantAddr]; ok && len(dupNames) > 1 {
    			for _, dupName := range dupNames {
    				if haveAddr, ok := have[dupName]; ok && haveAddr == wantAddr {
    					continue nextWant
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	//   required:
    	//     - name
    	//     - value
    	//   properties:
    	//     name:
    	//       type: string
    	//     nested:
    	//       type: object
    	//       properties:
    	//         subname:
    	//           type: string
    	//         flags:
    	//           type: object
    	//           additionalProperties:
    	//             type: boolean
    	//         dates:
    	//           type: array
    	//           items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	if err != nil {
    		klog.ErrorS(err, "Unable to derive new concurrency limits", "plNames", plNames, "items", items)
    		allocs = make([]float64, len(items))
    		for idx, plName := range plNames {
    			plState := plStates[plName]
    			allocs[idx] = float64(plState.currentCL)
    		}
    	}
    	for idx, plName := range plNames {
    		plState := plStates[plName]
    		if setCompleters {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  5. callbacks/create.go

    			isZero                    bool
    		)
    		stmt.Settings.Delete("gorm:update_track_time")
    
    		values = clause.Values{Columns: make([]clause.Column, 0, len(stmt.Schema.DBNames))}
    
    		for _, db := range stmt.Schema.DBNames {
    			if field := stmt.Schema.FieldsByDBName[db]; !field.HasDefaultValue || field.DefaultValueInterface != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    	pods, err := ctrl.findPodsByPVCKey(pvcKey)
    	if err != nil {
    		return nil, err
    	}
    	podNames := []string{}
    	for _, pod := range pods {
    		if util.IsPodTerminated(pod, pod.Status) {
    			continue
    		}
    		if len(pod.Spec.NodeName) == 0 {
    			podNames = append(podNames, pod.Name)
    		}
    	}
    	return podNames, nil
    }
    
    // doDeleteVolume finds appropriate delete plugin and deletes given volume, returning
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		xexit(1)
    	}
    }
    
    func (t *tester) shouldRunTest(name string) bool {
    	if t.runRx != nil {
    		return t.runRx.MatchString(name) == t.runRxWant
    	}
    	if len(t.runNames) == 0 {
    		return true
    	}
    	for _, runName := range t.runNames {
    		if runName == name {
    			return true
    		}
    	}
    	return false
    }
    
    func (t *tester) maybeLogMetadata() error {
    	if t.compileOnly {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. migrator/migrator.go

    					return err
    				}
    				var (
    					parseIndexes          = stmt.Schema.ParseIndexes()
    					parseCheckConstraints = stmt.Schema.ParseCheckConstraints()
    				)
    				for _, dbName := range stmt.Schema.DBNames {
    					var foundColumn gorm.ColumnType
    
    					for _, columnType := range columnTypes {
    						if columnType.Name() == dbName {
    							foundColumn = columnType
    							break
    						}
    					}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    func NewPodsIstioProxyImageMismatchInNamespace(r *resource.Instance, podNames []string) diag.Message {
    	return diag.NewMessage(
    		PodsIstioProxyImageMismatchInNamespace,
    		r,
    		podNames,
    	)
    }
    
    // NewConflictingTelemetryWorkloadSelectors returns a new diag.Message based on ConflictingTelemetryWorkloadSelectors.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    			unlock(&stackLarge.lock)
    		}
    	}
    }
    
    var maxstacksize uintptr = 1 << 20 // enough until runtime.main sets it for real
    
    var maxstackceiling = maxstacksize
    
    var ptrnames = []string{
    	0: "scalar",
    	1: "ptr",
    }
    
    // Stack frame layout
    //
    // (x86)
    // +------------------+
    // | args from caller |
    // +------------------+ <- frame->argp
    // |  return address  |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top