Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for opform (0.15 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	rel.Off = int32(c.pc)
    	rel.Siz = 8
    	rel.Sym = s
    	rel.Add = d
    	if c.ctxt.Flag_shared {
    		switch form {
    		case D_FORM:
    			rel.Type = objabi.R_ADDRPOWER_TOCREL
    		case DS_FORM:
    			rel.Type = objabi.R_ADDRPOWER_TOCREL_DS
    		}
    
    	} else {
    		switch form {
    		case D_FORM:
    			rel.Type = objabi.R_ADDRPOWER
    		case DS_FORM:
    			rel.Type = objabi.R_ADDRPOWER_DS
    		}
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        auto loc = conv_op.getLoc();
        auto image_2d_op = rewriter.create<mhlo::ReshapeOp>(
            conv_op.getLoc(), image_2d_type, conv_op.getLhs());
    
        // Transpose image to get it into NWHC form (where H is the added dim).
        SmallVector<int64_t, 4> image_permutation = {
            dnums.getInputBatchDimension(), dnums.getInputSpatialDimensions()[0],
            3,  // The trailing dim that we added.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

        for ssdgroup in "${ssdgroups[@]}"; do
          IFS="," read -r -a ssdopts <<< "${ssdgroup}"
          local opnum="${ssdopts[0]}"
          local opinterface="${ssdopts[1]}"
          local opformat="${ssdopts[2]}"
    
          if [[ "${opformat,,}" == "${format,,}" && "${opinterface,,}" == "${interface,,}" ]]; then
            localdisknum=$((localdisknum+opnum))
          fi
        done
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		if preemptone(pp) {
    			res = true
    		}
    	}
    	return res
    }
    
    // Tell the goroutine running on processor P to stop.
    // This function is purely best-effort. It can incorrectly fail to inform the
    // goroutine. It can inform the wrong goroutine. Even if it informs the
    // correct goroutine, that goroutine might ignore the request if it is
    // simultaneously executing newstack.
    // No lock needs to be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		// Check if this was converted from a k8s gateway-api resource
    		gatewaySemantics := cfg.Annotations[constants.InternalGatewaySemantics] == constants.GatewaySemanticsGateway
    
    		v := Validation{}
    
    		// Gateway name must conform to the DNS label format (no dots)
    		if !labels.IsDNS1123Label(name) && !gatewaySemantics {
    			v = AppendValidation(v, fmt.Errorf("invalid gateway name: %q", name))
    		}
    		value, ok := cfg.Spec.(*networking.Gateway)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	kl.evictionManager.Start(kl.StatsProvider, kl.GetActivePods, kl.PodIsFinished, evictionMonitoringPeriod)
    
    	// container log manager must start after container runtime is up to retrieve information from container runtime
    	// and inform container to reopen log file after log rotation.
    	kl.containerLogManager.Start()
    	// Adding Registration Callback function for CSI Driver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    Given a tensor `x` of complex numbers, this operation returns a tensor of type
    `float` or `double` that is the absolute value of each element in `x`. All
    elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute
    value is computed as \\( \sqrt{a^2 + b^2}\\).
      }];
    
      let arguments = (ins
        TFL_TensorOf<[Complex<F<32>>, Complex<F<64>>]>:$input
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    				return nil, cleanupAction, fmt.Errorf("failed to prepare subPath for volumeMount %q of container %q", mount.Name, container.Name)
    			}
    		}
    
    		// Docker Volume Mounts fail on Windows if it is not of the form C:/
    		if volumeutil.IsWindowsLocalPath(runtime.GOOS, hostPath) {
    			hostPath = volumeutil.MakeAbsolutePath(runtime.GOOS, hostPath)
    		}
    
    		containerPath := mount.MountPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    	// use the normalized form of the entityName (which will be an LDAP DN).
    	userType := IAMUserType(mapping.UserType)
    	isGroup := mapping.IsGroup
    	entityName := mapping.UserOrGroup
    	if globalIAMSys.GetUsersSysType() == LDAPUsersSysType && userType == stsUser {
    
    		// Validate that the user or group exists in LDAP and use the normalized
    		// form of the entityName (which will be an LDAP DN).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		if err != nil {
    			fmt.Fprintln(os.Stderr, err.Error())
    			os.Exit(1)
    		}
    		fmt.Println(ln.Addr().String())
    		HandleFunc("/", func(w ResponseWriter, r *Request) {
    			r.ParseForm()
    			if r.Form.Get("stop") != "" {
    				os.Exit(0)
    			}
    			w.Header().Set("Content-Type", "text/html; charset=utf-8")
    			w.Write(data)
    		})
    		var srv Server
    		log.Fatal(srv.Serve(ln))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top