Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for Calling (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        SmallVectorImpl<SideEffects::EffectInstance<MemoryEffects::Effect>>
            &effects) {
      if (!getFunctionList().empty()) {
        // The StableHLO module embedded in XlaCallModule contains
        // `stablehlo.custom_call` calling TF host callback functions.
        // `stablehlo.custom_call` will be lowered to `stablehlo.send` and
        // `stablehlo.recv`.
        effects.emplace_back(MemoryEffects::Write::get(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	// relocations. On GNU systems, we can arrange for the dynamic linker to
    	// mprotect sections after relocations are applied by giving them write
    	// permissions in the object file and calling them ".data.rel.ro.FOO". We
    	// divide the .rodata section between actual .rodata and .data.rel.ro.rodata,
    	// but for the other sections that this applies to, we just write a read-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Load <t> (OffPtr [off] (ITab (IMake (Convert (Addr {sym} _) _) _))) _) && t.IsInteger() && t.Size() == 4 && isFixed32(config, sym, off) => (Const32 [fixed32(config, sym, off)])
    
    // Calling cmpstring a second time with the same arguments in the
    // same memory state can reuse the results of the first call.
    // See issue 61725.
    // Note that this could pretty easily generalize to any pure function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier_test.go

    				t.Errorf("%d overrides did not match any test case name!", len(tc.overrides)-overridesApplied)
    			}
    			runPacketFlowTests(t, tc.line, nft, testNodeIPs, tcFlowTests)
    		})
    	}
    }
    
    // Test calling syncProxyRules() multiple times with various changes
    func TestSyncProxyRulesRepeated(t *testing.T) {
    	nft, fp := NewFakeProxier(v1.IPv4Protocol)
    
    	baseRules := dedent.Dedent(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    				if p.To.Sym == nil {
    					ctxt.Diag("call without target")
    					ctxt.DiagFlush()
    					log.Fatalf("bad code")
    				}
    
    				if yt.zcase == Zcallduff && ctxt.Flag_dynlink {
    					ctxt.Diag("directly calling duff when dynamically linking Go")
    				}
    
    				if yt.zcase == Zcallduff && ctxt.Arch.Family == sys.AMD64 {
    					// Maintain BP around call, since duffcopy/duffzero can't do it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
          </fields>
          <comment>We could probably have a specific element for a dev mailing list for things like CI,
            and maybe even a specific element for the user and scm mailing lists. Then leave the more
            lose structure for any other type of mailing list.</comment>
          <codeSegments>
            <codeSegment>
              <version>4.0.0+</version>
              <code>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	if err := kl.containerRuntime.KillPod(ctx, pod, p, gracePeriodOverride); err != nil {
    		return err
    	}
    	if err := kl.containerManager.UpdateQOSCgroups(); err != nil {
    		klog.V(2).InfoS("Failed to update QoS cgroups while killing pod", "err", err)
    	}
    	return nil
    }
    
    // makePodDataDirs creates the dirs for the pod datas.
    func (kl *Kubelet) makePodDataDirs(pod *v1.Pod) error {
    	uid := pod.UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    			if !wait.Interrupted(err) {
    				kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToKillPod, "error killing pod: %v", err)
    				syncErr = fmt.Errorf("error killing pod: %w", err)
    				utilruntime.HandleError(syncErr)
    			}
    		} else {
    			// There was no error killing the pod, but the pod cannot be run.
    			// Return an error to signal that the sync loop should back off.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"f/2": withRule(objectType(map[string]schema.Structural{"m": integerType}), "self.m == 'abc'"),
    			}), "1 == 1"),
    			errors: []string{"found no matching overload for '_==_' applied to '(int, string)"},
    		},
    		{name: "failing rule under escaped field name",
    			obj: map[string]interface{}{
    				"f/2": map[string]interface{}{
    					"m": 1,
    				},
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    				expectSyncDaemonSets(t, manager, ds, podControl, test.expectedCreates, test.expectedDeletes, test.expectedEvents)
    			}
    		})
    	}
    }
    
    // DaemonSet controller needs to backoff when killing failed pods to avoid hot looping and fighting with kubelet.
    func TestDaemonKillFailedPodsBackoff(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		t.Run(string(strategy.Type), func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top