Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for completeness (0.16 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    					Controller: ptr.To(true),
    				},
    			},
    			shouldReportUnexpectedController: true,
    		},
    		{
    			// API validation should prevent two controllers from being set,
    			// but for completeness it is still tested.
    			name: "own controller and another",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       "pod",
    					UID:        "pod-uid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		want          interface{}
    		assertOnError func(t *testing.T, e error)
    
    		// TODO: Some failing test cases are included for completeness. The next library
    		// minor version should allow them all to be fixed. In the meantime, this field
    		// explains the behavior reason for a particular failure.
    		fixme string
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * href="../../../nbtcodes.html">Here</a> is
     * a fairly complete list of NetBIOS hex codes. Scope is not used but is
     * still functional in other NetBIOS products and so for completeness it has been
     * implemented. A <code>scope</code> of <code>null</code> or <code>""</code>
     * signifies no scope.
     *
     * @param host the name to resolve
     * @param type the hex code of the name
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * Avoid dependencies that pull in legacy libraries.
    * Upgrade the dependency version if the new version no longer pulls in a legacy library.
    * Downgrade to `google-collections`. It's not recommended, just mentioned for completeness.
    
    Traditional approaches work but they are not general enough.
    For example, an organisation wants to resolve the `google-collections` -&gt; `guava` conflict resolution problem in all projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. hack/lib/golang.sh

      # OS X, in bytes. Note that get_physmem, as used, should only ever
      # run in a Linux container (because it's only used in the multiple
      # platform case, which is a Dockerized build), but this is provided
      # for completeness.
      if mem=$(sysctl -n hw.memsize 2>/dev/null); then
        echo $(( mem / 1073741824 ))
        return
      fi
    
      # If we can't infer it, just give up and assume a low memory system
      echo 1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/graph_builder.go

    	if a.Namespace != b.Namespace {
    		return a.Namespace < b.Namespace
    	}
    	// name is more significant than uid
    	if a.Name != b.Name {
    		return a.Name < b.Name
    	}
    	// uid is included for completeness, but is expected to be identical
    	// when getting alternate identities for an owner since they are keyed by uid
    	if a.UID != b.UID {
    		return a.UID < b.UID
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        Module System.
     *  New: Log gzipped bodies when `HttpLoggingInterceptor` is used as a network
        interceptor.
     *  New: `Protocol.QUIC` constant. This protocol is not supported but this
        constant is included for completeness.
     *  New: Upgrade to Okio 1.14.0.
    
         ```xml
         <dependency>
           <groupId>com.squareup.okio</groupId>
           <artifactId>okio</artifactId>
           <version>1.14.0</version>
         </dependency>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    //     an explicit package pattern is included as a root. This follows directly
    //     from (1): packages matching explicit package patterns are marked with
    //     pkgIsRoot.
    //
    //  3. (The completeness invariant.) Every module that contributed any package
    //     to the build is required by either the main module or one of the modules
    //     it requires explicitly. This invariant is left up to the caller, who must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    	g()
    }
    </pre>
    
    
    <h3 id="Bootstrapping">Bootstrapping</h3>
    
    <p>
    Current implementations provide several built-in functions useful during
    bootstrapping. These functions are documented for completeness but are not
    guaranteed to stay in the language. They do not return a result.
    </p>
    
    <pre class="grammar">
    Function   Behavior
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. doc/go_spec.html

    	g()
    }
    </pre>
    
    
    <h3 id="Bootstrapping">Bootstrapping</h3>
    
    <p>
    Current implementations provide several built-in functions useful during
    bootstrapping. These functions are documented for completeness but are not
    guaranteed to stay in the language. They do not return a result.
    </p>
    
    <pre class="grammar">
    Function   Behavior
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top