Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for seem (0.09 sec)

  1. pkg/apis/core/validation/validation.go

    	// There should be no duplicates in the list of scheduling gates.
    	seen := sets.Set[string]{}
    	for i, schedulingGate := range schedulingGates {
    		allErrs = append(allErrs, ValidateQualifiedName(schedulingGate.Name, fldPath.Index(i))...)
    		if seen.Has(schedulingGate.Name) {
    			allErrs = append(allErrs, field.Duplicate(fldPath.Index(i), schedulingGate.Name))
    		}
    		seen.Insert(schedulingGate.Name)
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    				idj := f.Setting(j).ID
    				if idi == idj {
    					return true
    				}
    			}
    		}
    		return false
    	}
    	seen := map[http2SettingID]bool{}
    	for i := 0; i < num; i++ {
    		id := f.Setting(i).ID
    		if seen[id] {
    			return true
    		}
    		seen[id] = true
    	}
    	return false
    }
    
    // ForeachSetting runs fn for each setting.
    // It stops and returns the first error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        </magic>
        <glob pattern="*.fdf"/>
      </mime-type>
      <mime-type type="application/vnd.fdsn.mseed">
        <glob pattern="*.mseed"/>
      </mime-type>
      <mime-type type="application/vnd.fdsn.seed">
        <glob pattern="*.seed"/>
        <glob pattern="*.dataless"/>
      </mime-type>
      <mime-type type="application/vnd.ffsns"/>
      <mime-type type="application/vnd.fints"/>
      <mime-type type="application/vnd.flographit">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    }
    
    // These constants are for remote command execution and port forwarding and are
    // used by both the client side and server side components.
    //
    // This is probably not the ideal place for them, but it didn't seem worth it
    // to create pkg/exec and pkg/portforward just to contain a single file with
    // constants in it.  Suggestions for more appropriate alternatives are
    // definitely welcome!
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			// TODO: handle this case? Named return values must be
    			// in memory so that the deferred function can see them.
    			// Maybe do: if !strings.HasPrefix(n.String(), "~") { return false }
    			// Or maybe not, see issue 18860.  Even unnamed return values
    			// must be written back so if a defer recovers, the caller can see them.
    			return false
    		}
    		if s.cgoUnsafeArgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

      
      This is currently an alpha-level feature and while it probably will not
      eat your data, it may nibble at it a bit. (It passes e2e testing but has
      not yet seen real-world use.)
      
      At this point it should be functionally mostly identical to the iptables
      mode, except that it does not (and will not) support Service NodePorts on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage_test.go

    			// Make sure any allocated ports are unique
    			seen := map[int32]int32{}
    			for i, p := range ports {
    				// We allow the same NodePort for different protocols of the
    				// same Port.
    				if prev, found := seen[p.NodePort]; found && prev != p.Port {
    					t.Errorf("found non-unique allocation in Ports[%d].NodePort: %d -> %d", i, p.NodePort, p.Port)
    				}
    				seen[p.NodePort] = p.Port
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-62352`](https://youtrack.jetbrains.com/issue/KT-62352) jspecify NonNull annotation seems not supported
    - [`KT-65636`](https://youtrack.jetbrains.com/issue/KT-65636) PowerAssert: Negative contains operator not aligned correctly in K2
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	if err := apiextensions.AddToScheme(scheme); err != nil {
    		t.Fatal(err)
    	}
    
    	seed := rand.Int63()
    	t.Logf("seed: %d", seed)
    	fuzzerFuncs := fuzzer.MergeFuzzerFuncs(apiextensionsfuzzer.Funcs)
    	f := fuzzer.FuzzerFor(fuzzerFuncs, rand.NewSource(seed), codecs)
    
    	for i := 0; i < 10000; i++ {
    		// fuzz internal types
    		schema := &apiextensions.JSONSchemaProps{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
Back to top