Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for completeness (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        // The operand is an unranked tensor, print a warning if the result
        // is static.
        // Note: We do not handle this situation as an error, this would be too
        // restrictive due to incompleteness of shape inference at this point.
        mlir::InFlightDiagnostic diag =
            mlir::emitWarning(op->getLoc(), "has static shape result");
        if (op->getContext()->shouldPrintOpOnDiagnostic()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top