Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,311 for yield (0.07 sec)

  1. cmd/kubeadm/app/phases/addons/dns/manifests.go

      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      # Without this resourceVersion value, an update of the Service between versions will yield:
      #   Service "kube-dns" is invalid: metadata.resourceVersion: Invalid value: "": must be specified for an update
      resourceVersion: "0"
    spec:
      clusterIP: {{ .DNSIP }}
      ports:
      - name: dns
        port: 53
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 09:59:39 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_duplicate_resource_ops.cc

    // and returns that resource op. Otherwise, returns null.
    Operation* GetResourceOp(Operation* op) {
      // Check if the island has only one block thats contain two ops, including
      // one resource op and one Yield op.
      auto island_op = llvm::dyn_cast_or_null<IslandOp>(op);
      if (!island_op || !island_op.getBody().hasOneBlock()) return nullptr;
      auto& island_block = island_op.getBody().front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 04:26:16 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

                is SystemProperty -> trace
                is Project -> trace
                else -> null
            }
    }
    
    
    enum class PropertyKind {
        Field {
            override fun toString() = "field"
        },
        PropertyUsage {
            override fun toString() = "property usage"
        },
        InputProperty {
            override fun toString() = "input property"
        },
        OutputProperty {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/go/ast/issues_test.go

    // Package p doc comment goes here.
    //
    // Code generated by gen. DO NOT EDIT.
    package p
    
    ... `, true},
    		// Special comment is indented.
    		//
    		// Strictly, the indent should cause IsGenerated to
    		// yield false, but we cannot detect the indent
    		// without either source text or a token.File.
    		// In other words, the function signature cannot
    		// implement the spec. Let's brush this under the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 13:57:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10ScopeResolution.kt

            return scope.getClassifierNames() ?: emptySet()
        }
    
        override fun getConstructors(): Sequence<KaConstructorSymbol> = sequence {
            constructors.forEach { yield(it.toKtConstructorSymbol(analysisContext)) }
        }
    }
    
    internal open class KaFe10ScopeNonStaticMember(
        scope: MemberScope,
        constructors: Collection<ConstructorDescriptor>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. docs/fa/docs/tutorial/middleware.md

    * می تواند کاری با **پاسخ** انجام دهید یا هر کد مورد نیازتان را اجرا کند.
    * سپس **پاسخ** را برمی گرداند.
    
    !!! توجه "جزئیات فنی"
        در صورت وجود وابستگی هایی با `yield`، کد خروجی **پس از** اجرای میان‌‌افزار اجرا خواهد شد.
    
        در صورت وجود هر گونه وظایف پس زمینه (که در ادامه توضیح داده می‌شوند)، تمام میان‌افزارها *پس از آن* اجرا خواهند شد.
    
    ## ساخت یک میان افزار
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 29 17:53:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/runtime/sema_test.go

    	defer GOMAXPROCS(GOMAXPROCS(-1))
    	GOMAXPROCS(2)
    	TestSemaHandoff(t)
    }
    
    func testSemaHandoff() bool {
    	var sema, res uint32
    	done := make(chan struct{})
    
    	// We're testing that the current goroutine is able to yield its time slice
    	// to another goroutine. Stop the current goroutine from migrating to
    	// another CPU where it can win the race (and appear to have not yielded) by
    	// keeping the CPUs slightly busy.
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 21 19:37:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    	if err != nil {
    		return nil, err
    	}
    	return newObj, nil
    }
    
    func printIfNotExists(err error) {
    	if apierrors.IsNotFound(err) {
    		fmt.Println("[dryrun] The GET request didn't yield any result, the API Server returned a NotFound error.")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/anames.go

    	"VUMAX",
    	"VUMIN",
    	"VUSHLL",
    	"VUSHLL2",
    	"VUSHR",
    	"VUSRA",
    	"VUXTL",
    	"VUXTL2",
    	"VUZP1",
    	"VUZP2",
    	"VXAR",
    	"VZIP1",
    	"VZIP2",
    	"WFE",
    	"WFI",
    	"WORD",
    	"YIELD",
    	"LAST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/image/decode_test.go

    					continue loop
    				}
    			}
    		}
    		if imageFormat == "gif" {
    			// Each frame of a GIF can have a frame-local palette override the
    			// GIF-global palette. Thus, image.Decode can yield a different ColorModel
    			// than image.DecodeConfig.
    			continue
    		}
    		c, _, err := decodeConfig(it.filename)
    		if err != nil {
    			t.Errorf("%s: %v", it.filename, err)
    			continue loop
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:51:48 UTC 2019
    - 3.7K bytes
    - Viewed (0)
Back to top