Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for augmented (0.19 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    		}
    	}
    
    	return status
    }
    
    // addNominatedPods adds pods with equal or greater priority which are nominated
    // to run on the node. It returns 1) whether any pod was added, 2) augmented cycleState,
    // 3) augmented nodeInfo.
    func addNominatedPods(ctx context.Context, fh framework.Handle, pod *v1.Pod, state *framework.CycleState, nodeInfo *framework.NodeInfo) (bool, *framework.CycleState, *framework.NodeInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	// golang.org/issue/23701.
    	// b_test imports b with augmented method from export_test.go.
    	// b_test also imports a, which imports b.
    	// Must not accidentally see un-augmented b propagate through a to b_test.
    	tg.tempFile("src/a/a.go", `package a
    		import "b"
    		type Type struct{}
    		func (*Type) M() b.T {return 0}
    	`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/regexp/testdata/testregex.c

    #endif
    
    #ifndef REG_EXEC_DEFAULT
    #define REG_EXEC_DEFAULT	0
    #endif
    
    static const char* unsupported[] =
    {
    	"BASIC",
    #ifndef REG_EXTENDED
    	"EXTENDED",
    #endif
    #ifndef REG_AUGMENTED
    	"AUGMENTED",
    #endif
    #ifndef REG_SHELL
    	"SHELL",
    #endif
    
    #ifndef REG_CLASS_ESCAPE
    	"CLASS_ESCAPE",
    #endif
    #ifndef REG_COMMENT
    	"COMMENT",
    #endif
    #ifndef REG_DELIMITED
    	"DELIMITED",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // as object trackers for manipulating the objects available to the system
    //
    // ParamTracker only knows the gvk `paramGVK`. If in the future we need to
    // support multiple types of params this function needs to be augmented
    //
    // PolicyTracker expects FakePolicyDefinition and FakePolicyBinding types
    // !TODO: refactor this test/framework to remove startInformers argument and
    // clean up the return args, and in general make it more accessible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

     * argument is used.
     *
     * <p>
     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="Usage examples">
     * <tr bgcolor="#ccccff">
     * <td colspan="3">
     * <b>Examples Of SMB URLs When Augmented With A Second Constructor Parameter</b></td>
     * <tr>
     * <td width="20%">
     * <b>First Parameter</b></td>
     * <td><b>Second Parameter</b></td>
     * <td><b>Result</b></td>
     * </tr>
     *
     * <tr>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    ====
    
    Both graph and flat results can be combined and augmented with resolved file information.
    This is all demonstrated in the link:../samples/sample_tasks_with_dependency_resolution_result_inputs.html[Tasks with dependency resolution result inputs] sample.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         */
        private fun KtElement.getExpressionForOperationReferenceExpression(): KtElement? {
            if (this !is KtOperationReferenceExpression) return null
            return when (val parent = parent) {
                // Augment assignment resolves into KtCompoundVariableAccessCall, but we should resolve into a specific function
                is KtBinaryExpression -> parent.takeUnless { operationSignTokenType in KtTokens.AUGMENTED_ASSIGNMENTS }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

          collection = ((Multiset<?>) collection).elementSet();
        }
        /*
         * AbstractSet.removeAll(List) has quadratic behavior if the list size
         * is just more than the set's size.  We augment the test by
         * assuming that sets have fast contains() performance, and other
         * collections don't.  See
         * http://code.google.com/p/guava-libraries/issues/detail?id=1013
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Sets.java

          collection = ((Multiset<?>) collection).elementSet();
        }
        /*
         * AbstractSet.removeAll(List) has quadratic behavior if the list size
         * is just more than the set's size.  We augment the test by
         * assuming that sets have fast contains() performance, and other
         * collections don't.  See
         * http://code.google.com/p/guava-libraries/issues/detail?id=1013
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top