Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 208 for happen (0.55 sec)

  1. association.go

    					if ref.OwnPrimaryKey {
    						primaryFields = append(primaryFields, ref.PrimaryKey)
    						joinPrimaryKeys = append(joinPrimaryKeys, ref.ForeignKey.DBName)
    					} else {
    						relPrimaryFields = append(relPrimaryFields, ref.PrimaryKey)
    						joinRelPrimaryKeys = append(joinRelPrimaryKeys, ref.ForeignKey.DBName)
    					}
    				} else {
    					conds = append(conds, clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    			return
    		}
    
    		metrics = make([]MetricV2, 0, 5)
    		metrics = append(metrics, MetricV2{
    			Description: getHealLastActivityTimeMD(),
    			Value:       float64(time.Since(bgSeq.lastHealActivity)),
    		})
    		metrics = append(metrics, getObjectsScanned(bgSeq)...)
    		metrics = append(metrics, getHealedItems(bgSeq)...)
    		metrics = append(metrics, getFailedItems(bgSeq)...)
    		return
    	})
    	return mg
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    		// Size of 20 allows reading the IPv4 IP header.
    		match = append(match, "-j", "NFLOG", "--nflog-prefix", fmt.Sprintf(`%q`, command.Identifier), "--nflog-group", "1337", "--nflog-size", "20")
    		*ipt = append(*ipt, &Rule{
    			chain:  chain,
    			table:  table,
    			params: append([]string{"-A", chain}, match...),
    		})
    	}
    	rules := params
    	*ipt = append(*ipt, &Rule{
    		chain:  chain,
    		table:  table,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    			if condition.Status == api.ConditionTrue {
    				status = append(status, string(condition.Type))
    			} else {
    				status = append(status, "Not"+string(condition.Type))
    			}
    		}
    	}
    	if len(status) == 0 {
    		status = append(status, "Unknown")
    	}
    	if obj.Spec.Unschedulable {
    		status = append(status, "SchedulingDisabled")
    	}
    
    	roles := strings.Join(findNodeRoles(obj), ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. callbacks/preload.go

    			if ref.OwnPrimaryKey {
    				joinForeignKeys = append(joinForeignKeys, ref.ForeignKey.DBName)
    				joinForeignFields = append(joinForeignFields, ref.ForeignKey)
    				foreignFields = append(foreignFields, ref.PrimaryKey)
    			} else if ref.PrimaryValue != "" {
    				tx = tx.Where(clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
    			} else {
    				joinRelForeignFields = append(joinRelForeignFields, ref.ForeignKey)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

                    if (idx < 0) {
                        buffer.append(resourceName);
                    } else {
                        buffer.append(resourceName, idx + 1, resourceName.length());
                    }
                    buffer.append(" (");
                }
    
                format.formatProgress(buffer, complete, total);
    
                if (printResourceNames) {
                    buffer.append(")");
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen.go

    	// string "v"
    	o = append(o, 0xa1, 0x76)
    	o = msgp.AppendString(o, z.Volume)
    	// string "ov"
    	o = append(o, 0xa2, 0x6f, 0x76)
    	o = msgp.AppendString(o, z.OrigVolume)
    	// string "fp"
    	o = append(o, 0xa2, 0x66, 0x70)
    	o = msgp.AppendString(o, z.FilePath)
    	// string "uo"
    	o = append(o, 0xa2, 0x75, 0x6f)
    	// map header, size 1
    	// string "np"
    	o = append(o, 0x81, 0xa2, 0x6e, 0x70)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

            if (unit == ScaleUnit.BYTE) {
                builder.append(size);
            } else if (scaledSize < 0.05d || scaledSize >= 10.0d) {
                builder.append(Math.round(scaledSize));
            } else {
                builder.append(Math.round(scaledSize * 10d) / 10d);
            }
    
            if (!omitSymbol) {
                builder.append(" ").append(unit.symbol());
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationQualifierRenderer.kt

                printer: PrettyPrinter,
            ) {
                printer {
                    val classId = annotation.classId
                    if (classId != null) {
                        append(classId.asSingleFqName().render())
                    } else {
                        append("ERROR_ANNOTATION")
                    }
                }
            }
        }
    
        public object WITH_SHORT_NAMES : KaAnnotationQualifierRenderer {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    		deletedClusters = append(deletedClusters, serviceClusters[key.Name].UnsortedList()...)
    		deletedClusters = append(deletedClusters, subsetClusters[key.Name].UnsortedList()...)
    	} else {
    		// Service exists. If the service update has port change, we need to the corresponding port clusters.
    		services = append(services, service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top